25 lines
492 B
Plaintext
25 lines
492 B
Plaintext
# Description: Advanced spell checker
|
|
# URL: https://hunspell.github.io/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# 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
|
|
}
|