summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 122e9d46df4f97b8f29da28b34dff9115f57fe6f (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
pkgname=cronutils
pkgver=1.9
pkgrel=2
pkgdesc="utilities to assist running batch processing jobs"
url="https://github.com/google/cronutils"
arch=(i686 x86_64)
license=('Apache')
source=("https://github.com/google/$pkgname/archive/version/$pkgver.tar.gz")
md5sums=('75e0c279a56a811e8302d08827fcd9f3')

build() {
	cd "$pkgname-version-$pkgver"
	make
}

check() {
	cd "$pkgname-version-$pkgver"
	make test
}

package() {
	cd "$pkgname-version-$pkgver"
	make prefix=/usr DESTDIR="$pkgdir/" install
}