blob: 2afd2eaf2ae28cb3e77f379fcaf32bd991835473 (
plain)
1 # Description: Advanced spell checker
2 # URL: http://hunspell.sourceforge.net/
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on:
5
6 name=hunspell
7 version=1.6.1
8 release=2
9 source=(https://github.com/hunspell/$name/archive/v$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 autoreconf -if
15
16 ./configure \
17 --prefix=/usr \
18 --disable-nls
19 make
20 make prefix=$PKG/usr install
21
22 rm -rf $PKG/usr/share/man/hu
23 }
|