diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2017-09-12 08:52:55 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-09-26 09:49:59 +0000 |
commit | 829237f46355d506ea22661e8d55049997abc372 (patch) | |
tree | 1bbb65efba6f8404d1a1c713e368ee995fc86d0d /main/gnupg | |
parent | 10d4586eb21d86c75bd3ffc220fb8437d1456214 (diff) | |
download | aports-829237f46355d506ea22661e8d55049997abc372.tar.bz2 aports-829237f46355d506ea22661e8d55049997abc372.tar.xz |
main/gnupg: add tests
Diffstat (limited to 'main/gnupg')
-rw-r--r-- | main/gnupg/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/main/gnupg/APKBUILD b/main/gnupg/APKBUILD index 886b20853f..1f5a63a485 100644 --- a/main/gnupg/APKBUILD +++ b/main/gnupg/APKBUILD @@ -3,7 +3,7 @@ pkgname=gnupg pkgver=2.2.0 _ver=${pkgver/_beta/-beta} -pkgrel=0 +pkgrel=1 pkgdesc="GNU Privacy Guard 2 - a PGP replacement tool" url="https://www.gnupg.org/" arch="all" @@ -33,6 +33,11 @@ build() { make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install |