diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 13:50:20 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 13:50:20 +0000 |
commit | 59eb0a44c4d086ec817dd2352b4925488e2e8bba (patch) | |
tree | d82ff7d0c0e87bf2ced318a5020b03387a3ef44b /main/lzo | |
parent | 2c3fcbbf6c999f66b3b72729b557b6a9a3ca290b (diff) | |
download | aports-59eb0a44c4d086ec817dd2352b4925488e2e8bba.tar.bz2 aports-59eb0a44c4d086ec817dd2352b4925488e2e8bba.tar.xz |
main/lzo: remove *.la
Diffstat (limited to 'main/lzo')
-rw-r--r-- | main/lzo/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/lzo/APKBUILD b/main/lzo/APKBUILD index 7f0a9d5d9..958e0ac12 100644 --- a/main/lzo/APKBUILD +++ b/main/lzo/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Michael Mason <ms13sp@gmail.com> pkgname=lzo pkgver=2.03 -pkgrel=4 +pkgrel=5 pkgdesc="LZO -- a real-time data compression library" url="http://www.oberhumer.com/opensource/lzo" arch="all" @@ -26,7 +26,8 @@ build() { package() { cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la } md5sums="0c3d078c2e8ea5a88971089a2f02a726 lzo-2.03.tar.gz" |