diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-03-13 10:13:34 -0500 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-03-13 10:13:34 -0500 |
commit | d25b04eda054f6bd8f83b2a494a377caac4a8ab7 (patch) | |
tree | bcf7cd457317e19ea949001f7e9deace99c25512 /main/hunspell/APKBUILD | |
parent | a706a69fedd66e64f49cb40bfeb14747b1f795e4 (diff) | |
download | aports-d25b04eda054f6bd8f83b2a494a377caac4a8ab7.tar.bz2 aports-d25b04eda054f6bd8f83b2a494a377caac4a8ab7.tar.xz |
main/hunspell: fix up locale.alias
ref #501
Diffstat (limited to 'main/hunspell/APKBUILD')
-rw-r--r-- | main/hunspell/APKBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/main/hunspell/APKBUILD b/main/hunspell/APKBUILD index 8338f30afa..c185bc58bd 100644 --- a/main/hunspell/APKBUILD +++ b/main/hunspell/APKBUILD @@ -1,25 +1,27 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=hunspell pkgver=1.2.15 -pkgrel=0 +pkgrel=1 pkgdesc="Spell checker and morphological analyzer library and program" url="http://hunspell.sourceforge.net/" arch="all" license="GPL LGPL MPL" subpackages="$pkgname-dev $pkgname-doc" depends= -makedepends= +makedepends="gettext-dev" source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" build() { cd "$srcdir/hunspell-$pkgver" - ./configure --prefix=/usr --disable-static || return 1 + ./configure --prefix=/usr \ + --disable-static \ + --without-included-gettext || return 1 make || return 1 } package() { cd "$srcdir/hunspell-$pkgver" make -j1 DESTDIR="$pkgdir" install || return 1 - rm -rf "$pkgdir"/usr/share/locale/locale.alias } + md5sums="3fa2644b8d48cae48cb0967ffba91c9d hunspell-1.2.15.tar.gz" |