25 lines
496 B
Plaintext
25 lines
496 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.7.0
|
|
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 prefix=$PKG/usr install
|
|
|
|
ln -s libhunspell-1.7.so.0.0.1 $PKG/usr/lib/libhunspell.so
|
|
rm -rf $PKG/usr/share/man/hu
|
|
}
|