diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 14:01:15 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-29 14:01:15 +0000 |
commit | cf7c6ee84a745b0fa1f2e9771bce2426fc25b7de (patch) | |
tree | c66b210935b1d734b398c58359f0af45a737c142 /main | |
parent | 6e0114a95dc2b7cba8d15d9b361732b5af21eb2e (diff) | |
download | aports-cf7c6ee84a745b0fa1f2e9771bce2426fc25b7de.tar.bz2 aports-cf7c6ee84a745b0fa1f2e9771bce2426fc25b7de.tar.xz |
main/libxpm: remove *.la
Diffstat (limited to 'main')
-rw-r--r-- | main/libxpm/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/libxpm/APKBUILD b/main/libxpm/APKBUILD index bae78df419..0f9e0b25c7 100644 --- a/main/libxpm/APKBUILD +++ b/main/libxpm/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libxpm pkgver=3.5.9 -pkgrel=1 +pkgrel=2 pkgdesc="X11 pixmap library" url="http://xorg.freedesktop.org/" arch="all" @@ -23,6 +23,7 @@ build() { package() { cd "$srcdir"/libXpm-$pkgver make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING } md5sums="2de3a1b9541f4b3a6f9d84b69d25530e libXpm-3.5.9.tar.bz2" |