summaryrefslogtreecommitdiffstats
path: root/hunspell/Pkgfile
blob: 1b6d253c0b56936521aac3f500bdcadb07bcc063 (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.12
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
}