diff options
Diffstat (limited to 'system/libmnl/APKBUILD')
-rw-r--r-- | system/libmnl/APKBUILD | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/system/libmnl/APKBUILD b/system/libmnl/APKBUILD index 2826275b1..19d848c8c 100644 --- a/system/libmnl/APKBUILD +++ b/system/libmnl/APKBUILD @@ -8,17 +8,15 @@ url="https://www.netfilter.org/projects/libmnl/" arch="all" options="!check" # this package doesn't actually run any tests, just builds them license="LGPL-2.0+" -depends= +depends="" depends_dev="linux-headers" makedepends="$depends_dev" checkdepends="bsd-compat-headers" -install="" subpackages="$pkgname-dev" source="https://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2 test-include-sysselect.patch" build() { - cd "$builddir" ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -27,12 +25,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |