diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-08-05 15:18:39 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-08-28 08:40:40 +0000 |
commit | 8397d850ffb89f8c51c9079af7c73f0b0c6f8caf (patch) | |
tree | 9b8527e46053bb8e7381d04559b079d57eca6159 /main/bzip2/APKBUILD | |
parent | 9b94d161c413787c8743ea8bd221ce9b654da8d1 (diff) | |
download | aports-8397d850ffb89f8c51c9079af7c73f0b0c6f8caf.tar.bz2 aports-8397d850ffb89f8c51c9079af7c73f0b0c6f8caf.tar.xz |
main/bzip2: add tests
Diffstat (limited to 'main/bzip2/APKBUILD')
-rw-r--r-- | main/bzip2/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/main/bzip2/APKBUILD b/main/bzip2/APKBUILD index b1351d6038..aa73e70ab5 100644 --- a/main/bzip2/APKBUILD +++ b/main/bzip2/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=bzip2 pkgver=1.0.6 -pkgrel=5 +pkgrel=6 pkgdesc="A high-quality data compression program" url="http://sources.redhat.com/bzip2" arch="all" @@ -45,6 +45,11 @@ build () { make all } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make PREFIX="$pkgdir"/usr install |