24 lines
441 B
Plaintext
24 lines
441 B
Plaintext
# Description: Advanced spell checker
|
|
# URL: http://hunspell.sourceforge.net/
|
|
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
|
|
# Depends on:
|
|
|
|
name=hunspell
|
|
version=1.6.1
|
|
release=2
|
|
source=(https://github.com/hunspell/$name/archive/v$version/$name-v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
autoreconf -if
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
make
|
|
make prefix=$PKG/usr install
|
|
|
|
rm -rf $PKG/usr/share/man/hu
|
|
}
|