summaryrefslogtreecommitdiffstats
path: root/hunspell/Pkgfile
blob: 80bf678cc2d0ee3c1834a82022e4bd5d27ccb7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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.3.2
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
}