diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 07:59:41 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 07:59:41 +0000 |
commit | 362417e38f3aaf5a6f25f2fe359477a9b14735c9 (patch) | |
tree | 46b2984c5fbe0add825dd15f9ce6d6c7895d1d86 | |
parent | d39b495969e27b6ab971c87773efe99a8a047b01 (diff) | |
download | aports-362417e38f3aaf5a6f25f2fe359477a9b14735c9.tar.bz2 aports-362417e38f3aaf5a6f25f2fe359477a9b14735c9.tar.xz |
main/geoip: remove *.la
-rw-r--r-- | main/geoip/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/geoip/APKBUILD b/main/geoip/APKBUILD index 2670da301c..c3b72a2727 100644 --- a/main/geoip/APKBUILD +++ b/main/geoip/APKBUILD @@ -3,7 +3,7 @@ pkgname="geoip" _realname="GeoIP" pkgver=1.4.7 -pkgrel=0 +pkgrel=1 pkgdesc="Lookup countries by IP addresses" url="http://www.maxmind.com/app/ip-location" arch="all" @@ -33,7 +33,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la } md5sums="a802175d5b7e2b57b540a7dd308d9205 GeoIP-1.4.7.tar.gz" |