diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 08:34:50 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 08:34:50 +0000 |
commit | f8b029837c3088c2adf1f2593348ff07f7e45fcb (patch) | |
tree | a26ae546ea076fd8c7ca8004464ebbd8798da638 /main | |
parent | 1ec870237b6491f3a3a1a659d636cb5725947961 (diff) | |
download | aports-f8b029837c3088c2adf1f2593348ff07f7e45fcb.tar.bz2 aports-f8b029837c3088c2adf1f2593348ff07f7e45fcb.tar.xz |
main/fftw: remove *.la
Diffstat (limited to 'main')
-rw-r--r-- | main/fftw/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/fftw/APKBUILD b/main/fftw/APKBUILD index 7a0c03d29..955a39099 100644 --- a/main/fftw/APKBUILD +++ b/main/fftw/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: William Pitcock <nenolod@dereferenced.org> pkgname=fftw pkgver=3.2.2 -pkgrel=0 +pkgrel=1 pkgdesc="fastest fourier transform in the west" url="http://www.fftw.org/" license="GPL" @@ -31,7 +31,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="b616e5c91218cc778b5aa735fefb61ae fftw-3.2.2.tar.gz" |