opt/hunspell/Pkgfile

24 lines
478 B
Plaintext
Raw Normal View History

2013-09-28 01:25:47 +02:00
# Description: Advanced spell checker
2021-01-29 14:03:25 +01:00
# URL: https://hunspell.github.io/
# Maintainer: Tim Biermann, tbier at posteo dot de
2013-09-28 01:25:47 +02:00
name=hunspell
2022-12-30 09:31:58 +01:00
version=1.7.2
2022-08-22 17:57:04 +02:00
release=1
2017-09-27 06:38:44 +02:00
source=(https://github.com/hunspell/$name/archive/v$version/$name-v$version.tar.gz)
2013-09-28 01:25:47 +02:00
build() {
2021-01-29 14:03:25 +01:00
cd $name-$version
2017-05-26 07:53:36 +02:00
2021-01-29 14:03:25 +01:00
autoreconf -if
2017-05-26 07:53:36 +02:00
2021-01-29 14:03:25 +01:00
./configure \
--prefix=/usr \
--disable-nls
2019-04-01 10:15:45 +02:00
2021-01-29 14:03:25 +01:00
make prefix=$PKG/usr install
2013-09-28 01:25:47 +02:00
2021-01-29 14:03:25 +01:00
ln -s libhunspell-1.7.so.0.0.1 $PKG/usr/lib/libhunspell.so
rm -rf $PKG/usr/share/man/hu
2013-09-28 01:25:47 +02:00
}