core/hunspell/PKGBUILD

31 lines
752 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
2016-02-22 07:56:12 +08:00
pkgver=1.3.4
2012-04-28 02:53:01 +08:00
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')
2016-02-22 07:56:12 +08:00
source=(https://github.com/hunspell/hunspell/archive/v${pkgver}.tar.gz)
md5sums=('423cff69e68c87ac11e4aa8462951954')
2010-03-14 23:48:48 +08:00
build() {
cd "$srcdir/hunspell-$pkgver"
./configure --prefix=/usr --disable-static \
2016-02-22 07:56:12 +08:00
--with-ui --with-readline
2012-04-28 02:53:01 +08:00
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
}
2016-02-22 07:56:12 +08:00