blob: d8fda3e849082632114d4ec91df5e2a2b1e39117 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Matthew Rease <scubaventure101[AT]hotmail[DOT]com>
pkgname=mash-git
pkgver=r96.1030e4c
pkgrel=1
pkgdesc="A bash/zsh like shell, written in C."
arch=('x86_64' 'aarch64' 'ppc')
url="https://gitlab.com/Magicrafter13/mash"
license=('GPL3')
makedepends=('git')
provides=('mash-sh')
conflicts=('mash-sh')
changelog=
source=("$pkgname"::"git+https://gitlab.com/Magicrafter13/mash.git#branch=master")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}
build() {
cd "$pkgname"
make -j
}
package() {
cd "$pkgname"
make DESTDIR="$pkgdir/usr/bin" install
}
|