core/hunspell/PKGBUILD
2012-04-27 18:53:01 +00:00

30 lines
774 B
Bash

#
# KDE SC Packages for Chakra, part of chakra-project.org
#
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
pkgname=hunspell
pkgver=1.3.2
pkgrel=1
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' '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 \
--with-ui --with-readline --with-experimental
make
}
package() {
cd "$srcdir/hunspell-$pkgver"
make DESTDIR="$pkgdir" install
}