core/hunspell/PKGBUILD

30 lines
774 B
Bash
Raw Normal View History

#
# KDE SC Packages for Chakra, part of chakra-project.org
#
2012-04-28 02:53:01 +08:00
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2010-03-14 23:48:48 +08:00
pkgname=hunspell
2012-04-28 02:53:01 +08:00
pkgver=1.3.2
pkgrel=1
2010-03-14 23:48:48 +08:00
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')
2010-05-17 15:50:50 +08:00
optdepends=('perl: for ispellaff2myspell')
2010-03-14 23:48:48 +08:00
options=('!libtool')
source=(http://downloads.sourceforge.net/hunspell/hunspell-$pkgver.tar.gz)
2012-04-28 02:53:01 +08:00
md5sums=('3121aaf3e13e5d88dfff13fb4a5f1ab8')
2010-03-14 23:48:48 +08:00
build() {
cd "$srcdir/hunspell-$pkgver"
./configure --prefix=/usr --disable-static \
2012-04-28 02:53:01 +08:00
--with-ui --with-readline --with-experimental
make
2010-05-17 15:50:50 +08:00
}
package() {
cd "$srcdir/hunspell-$pkgver"
2012-04-28 02:53:01 +08:00
make DESTDIR="$pkgdir" install
2010-03-14 23:48:48 +08:00
}