summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fad5ee08b4067c3bc468664295ff1f4e899b8c33 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
# Maintainer: Raja Mukherji <rajamukherji@gmail.com>
pkgname=rabs
pkgver=2.25.1
pkgrel=1
epoch=
pkgdesc="Generic imperative build system"
arch=('x86_64' 'i686')
url=""
license=('MIT')
groups=()
depends=('gc')
makedepends=()
checkdepends=()
optdepends=()
provides=('rabs')
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/wrapl/$pkgname#tag=v$pkgver")
noextract=()
md5sums=(SKIP)
validpgpkeys=()

prepare() {
	cd "$pkgname"
	git submodule update --init --recursive
}

build() {
	cd "$pkgname"
	make
}

check() {
	cd "$pkgname"
}

package() {
	cd "$pkgname"
	make PREFIX="$pkgdir/usr" install
}