core/hunspell/PKGBUILD
2016-02-21 23:56:12 +00:00

31 lines
752 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.4
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=(https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz)
md5sums=('423cff69e68c87ac11e4aa8462951954')
build() {
cd "$srcdir/hunspell-$pkgver"
./configure --prefix=/usr --disable-static \
--with-ui --with-readline
make
}
package() {
cd "$srcdir/hunspell-$pkgver"
make DESTDIR="$pkgdir" install
}