diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:13:19 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:13:19 +0000 |
commit | 9ee48270a41311c900237bc5636c8b25f9e7e33f (patch) | |
tree | 641a556e31bd72759ab17b6b8a97768261cba306 /main/gamin/APKBUILD | |
parent | c3d89f6bda6563c19a79c81713014bb230cd9d4f (diff) | |
download | aports-9ee48270a41311c900237bc5636c8b25f9e7e33f.tar.bz2 aports-9ee48270a41311c900237bc5636c8b25f9e7e33f.tar.xz |
main/gamin: remove *.la
Diffstat (limited to 'main/gamin/APKBUILD')
-rw-r--r-- | main/gamin/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/main/gamin/APKBUILD b/main/gamin/APKBUILD index 3e0647d8e5..5e790d6057 100644 --- a/main/gamin/APKBUILD +++ b/main/gamin/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=gamin pkgver=0.1.10 -pkgrel=6 +pkgrel=7 pkgdesc="Gamin is a file and directory monitoring system defined to be a subset of the FAM (File Alteration Monitor) system." url="http://www.gnome.org/~veillard/gamin" arch="all" @@ -26,9 +26,11 @@ build () package() { cd "$srcdir"/$pkgname-$pkgver - # some kinde of race in the make install which is not solved with -j + # some kinde of race in the make install which is not solved with -j || return 1 export MKDIRPROG="mkdir -p" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/python*/site-packages/*.la \ + "$pkgdir"/usr/lib/*.la || return 1 } py() { |