diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-30 11:13:57 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-30 11:13:57 +0000 |
commit | 079f0e92a473b28d63ce2f58f15aef3bf89a0ae1 (patch) | |
tree | 5cbf1b7c2befe54898d4a74d9b0b082a9891b434 /main/glade3 | |
parent | b39b232f5f31176d540bb55808d8e0c0e1ffbcf2 (diff) | |
download | aports-079f0e92a473b28d63ce2f58f15aef3bf89a0ae1.tar.bz2 aports-079f0e92a473b28d63ce2f58f15aef3bf89a0ae1.tar.xz |
main/glade3: remove all *.la
Diffstat (limited to 'main/glade3')
-rw-r--r-- | main/glade3/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/glade3/APKBUILD b/main/glade3/APKBUILD index 64e5b89da8..3290b0d33c 100644 --- a/main/glade3/APKBUILD +++ b/main/glade3/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=glade3 pkgver=3.8.0 -pkgrel=2 +pkgrel=3 pkgdesc="a RAD tool to enable quick & easy development of user interfaces for GTK+" url="http://glade.gnome.org/" arch="all" @@ -31,8 +31,9 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install - rm "$pkgdir"/usr/lib/*.la + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la \ + "$pkgdir"/usr/lib/glade3/modules/*.la } md5sums="42f8b2dd01b9bfb8860bb3a5d978e1a2 glade3-3.8.0.tar.bz2" |