diff options
author | Andrew Manison <amanison@anselsystems.com> | 2012-01-09 00:59:54 +0000 |
---|---|---|
committer | Andrew Manison <amanison@anselsystems.com> | 2012-01-09 00:59:54 +0000 |
commit | 87538f2a0edd3f81b00c1c84f475007b6852af3f (patch) | |
tree | 8a47aafe7d4c58574374d9cb128f110cd9fb6d76 /testing/libupnp | |
parent | 513150cd3cdf159292a7cf4ee7e70892075e5ab9 (diff) | |
download | aports-87538f2a0edd3f81b00c1c84f475007b6852af3f.tar.bz2 aports-87538f2a0edd3f81b00c1c84f475007b6852af3f.tar.xz |
testing/libupnp: Build fix to remove libtool archives before package split
Diffstat (limited to 'testing/libupnp')
-rw-r--r-- | testing/libupnp/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/libupnp/APKBUILD b/testing/libupnp/APKBUILD index 4964dd511..ce0ced74e 100644 --- a/testing/libupnp/APKBUILD +++ b/testing/libupnp/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Francesco Colista <francesco.colista@gmail.com> pkgname=libupnp pkgver=1.6.13 -pkgrel=0 +pkgrel=1 pkgdesc="Portable Open Source UPnP Development Kit" url="http://pupnp.sourceforge.net/" arch="all" @@ -24,6 +24,7 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/custom/${pkgname}/LICENSE + find "$pkgdir" -name *.la -print | xargs rm } md5sums="71476b1781ad179bfc9bead640be5f54 libupnp-1.6.13.tar.bz2" |