diff options
Diffstat (limited to 'user/npth')
-rw-r--r-- | user/npth/APKBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/user/npth/APKBUILD b/user/npth/APKBUILD index 7f73efd37..35cb7878d 100644 --- a/user/npth/APKBUILD +++ b/user/npth/APKBUILD @@ -6,11 +6,12 @@ pkgdesc="Portable threading library from GNU" url="https://www.gnupg.org/software/npth/index.html" arch="all" license="LGPL-2.1+" +depends="" +makedepends="" subpackages="$pkgname-dev" -source="ftp://ftp.gnupg.org/gcrypt/npth/npth-$pkgver.tar.bz2" +source="https://gnupg.org/ftp/gcrypt/npth/npth-$pkgver.tar.bz2" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -23,12 +24,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |