diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 11:17:29 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 11:17:29 +0000 |
commit | 0e2c81e196061ab5c9278c187416cfca03341eb7 (patch) | |
tree | cb67f232f3cf24acc9b0a82554b0b392c0597745 /main | |
parent | a630dff5bfe34158368ed6e0674a4efd590bc7fe (diff) | |
download | aports-0e2c81e196061ab5c9278c187416cfca03341eb7.tar.bz2 aports-0e2c81e196061ab5c9278c187416cfca03341eb7.tar.xz |
main/libcue: remove *.la
Diffstat (limited to 'main')
-rw-r--r-- | main/libcue/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/libcue/APKBUILD b/main/libcue/APKBUILD index 3c61236a27..0972f23880 100644 --- a/main/libcue/APKBUILD +++ b/main/libcue/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: William Pitcock <nenolod@dereferenced.org> pkgname=libcue pkgver=1.4.0 -pkgrel=0 +pkgrel=1 pkgdesc="library for parsing cue files" url="http://libcue.sourceforge.net/" license="GPL" @@ -26,7 +26,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="5f5045f00e6ac92d9a057fe5b0982c69 libcue-1.4.0.tar.bz2" |