diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:02:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:02:39 +0000 |
commit | 6e6e977e20ee50ea6974599fdd16aec0e5dfa143 (patch) | |
tree | fe980c6f44a3c7f2fe42d8fd04c7398a326044b5 /main/curl/APKBUILD | |
parent | 66e4f80145479099b44ceaa6b055d785fe064848 (diff) | |
download | aports-6e6e977e20ee50ea6974599fdd16aec0e5dfa143.tar.bz2 aports-6e6e977e20ee50ea6974599fdd16aec0e5dfa143.tar.xz |
main/curl: remove *.la
Diffstat (limited to 'main/curl/APKBUILD')
-rw-r--r-- | main/curl/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/curl/APKBUILD b/main/curl/APKBUILD index 2eb2e19a50..f020b9766f 100644 --- a/main/curl/APKBUILD +++ b/main/curl/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=curl pkgver=7.21.7 -pkgrel=0 +pkgrel=1 pkgdesc="An URL retrival utility and library" url="http://curl.haxx.se" arch="all" @@ -35,7 +35,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="5f6d50c4d4ee38c57fe37e3cff75adbd curl-7.21.7.tar.bz2" |