diff options
Diffstat (limited to 'abs/extra/hunspell/PKGBUILD')
-rw-r--r-- | abs/extra/hunspell/PKGBUILD | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/abs/extra/hunspell/PKGBUILD b/abs/extra/hunspell/PKGBUILD index 87f46cb..a4b178a 100644 --- a/abs/extra/hunspell/PKGBUILD +++ b/abs/extra/hunspell/PKGBUILD @@ -1,26 +1,33 @@ -# $Id: PKGBUILD 20746 2008-12-06 14:17:50Z alexanderf $ -# Maintainer: Alexander Fehr <pizzapunk gmail com> +# $Id: PKGBUILD 166664 2012-09-15 07:49:23Z andyrtr $ +# Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: Hussam Al-Tayeb <ht990332@gmail.com> pkgname=hunspell -pkgver=1.2.12 -pkgrel=1 +pkgver=1.3.2 +pkgrel=2 pkgdesc="Spell checker and morphological analyzer library and program" arch=('i686' 'x86_64') url="http://hunspell.sourceforge.net/" license=('GPL' 'LGPL' 'MPL') -depends=('gcc-libs') +depends=('gcc-libs' 'readline') +optdepends=('perl: for ispellaff2myspell') options=('!libtool') source=(http://downloads.sourceforge.net/hunspell/hunspell-$pkgver.tar.gz) +md5sums=('3121aaf3e13e5d88dfff13fb4a5f1ab8') build() { cd "$srcdir/hunspell-$pkgver" - - ./configure --prefix=/usr --disable-static || return 1 - make || return 1 + ./configure --prefix=/usr --disable-static \ + --with-ui --with-readline --with-experimental + make } + package() { cd "$srcdir/hunspell-$pkgver" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install + + # add generic hunspell.so for development and projects not using pkgconfig flags - FS#30592 + pushd $pkgdir/usr/lib + ln -s libhunspell-?.?.so libhunspell.so + popd } -md5sums=('5ef2dc1026660d0ffb7eae7b511aee23') |