blob: cf5201cf16a8b9c6d3c85a117da9d2dfb7fb1c31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Spell checker and morphological analyzer library and program
# URL: http://hunspell.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
name=hunspell
version=1.2.8
release=1
source=(http://downloads.sourceforge.net/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--disable-static \
--with-ui \
--with-readline \
--with-experimental
make
make DESTDIR=$PKG install
}
|