diff options
-rw-r--r-- | community/asio/APKBUILD | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/community/asio/APKBUILD b/community/asio/APKBUILD index 09d65c474c..97f6a3ffcc 100644 --- a/community/asio/APKBUILD +++ b/community/asio/APKBUILD @@ -2,7 +2,7 @@ pkgname=asio pkgver=1.12.0 _ver=${pkgver//./-} -pkgrel=0 +pkgrel=1 pkgdesc="A cross-platform C++ library for network programming" url="https://think-async.com" arch="all" @@ -31,6 +31,11 @@ build() { make } +check() { + cd "$builddir" + make check +} + package() { cd "$builddir" make DESTDIR="$pkgdir" install |