diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2020-04-10 23:12:34 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-04-10 23:12:34 +0000 |
commit | 9190b4bc625e735cbd2ce548197062b3cbd4f23d (patch) | |
tree | 9555a393d8c3b82a77e9c013cb235ca9935083ef /testing/libupnp/APKBUILD | |
parent | 91b2328918426bad3d7839c70beb7a54960b8c88 (diff) | |
download | aports-9190b4bc625e735cbd2ce548197062b3cbd4f23d.tar.bz2 aports-9190b4bc625e735cbd2ce548197062b3cbd4f23d.tar.xz |
testing/libupnp: fix build failure
Diffstat (limited to 'testing/libupnp/APKBUILD')
-rw-r--r-- | testing/libupnp/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/testing/libupnp/APKBUILD b/testing/libupnp/APKBUILD index 5672ac6eee..24c50cc720 100644 --- a/testing/libupnp/APKBUILD +++ b/testing/libupnp/APKBUILD @@ -12,9 +12,13 @@ subpackages="$pkgname-dev" source="https://downloads.sourceforge.net/sourceforge/pupnp/${pkgname}-${pkgver}.tar.bz2 disable-failing-test-init.patch" builddir="$srcdir/$pkgname-$pkgver" +options="!check" # tests fail on x86_64, assumed broken + +prepare() { + autoreconf +} build() { - cd "$builddir" ./configure \ --prefix=/usr \ --enable-ipv6 \ @@ -23,12 +27,10 @@ build() { } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |