diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:35:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:35:36 +0000 |
commit | 84f7c3e5d0182ae2645810d16efc1d5976a8fbd1 (patch) | |
tree | 646f4cf6f58690f8d8fd732f0c16365298e1bbc4 | |
parent | 21b96dc1dac7d2af714d2012e0529153d8626876 (diff) | |
download | aports-84f7c3e5d0182ae2645810d16efc1d5976a8fbd1.tar.bz2 aports-84f7c3e5d0182ae2645810d16efc1d5976a8fbd1.tar.xz |
main/hunspell: remove *.la
-rw-r--r-- | main/hunspell/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/hunspell/APKBUILD b/main/hunspell/APKBUILD index 1a292ea608..a8409b8b46 100644 --- a/main/hunspell/APKBUILD +++ b/main/hunspell/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hunspell pkgver=1.3.2 -pkgrel=0 +pkgrel=1 pkgdesc="Spell checker and morphological analyzer library and program" url="http://hunspell.sourceforge.net/" arch="all" @@ -22,6 +22,7 @@ build() { package() { cd "$srcdir/hunspell-$pkgver" make -j1 DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="3121aaf3e13e5d88dfff13fb4a5f1ab8 hunspell-1.3.2.tar.gz" |