contrib/enchant/Pkgfile

23 lines
515 B
Plaintext
Raw Normal View History

2017-11-26 22:24:57 +11:00
# Description: A wrapper library for generic spell checking.
# URL: https://abiword.github.io/enchant/
2023-08-18 14:48:24 -04:00
# Maintainer: John McQuah, jmcquah at disroot dot org
2023-09-27 10:45:37 +00:00
# Depends on: aspell glib
# Optional: hunspell
2006-11-14 09:01:22 +10:00
name=enchant
2024-05-29 12:57:41 +00:00
version=2.8.0
2017-11-26 22:24:57 +11:00
release=1
2017-11-26 23:30:57 +11:00
source=(https://github.com/AbiWord/$name/releases/download/v$version/$name-$version.tar.gz)
2006-11-14 09:01:22 +10:00
build() {
cd $name-$version
2008-05-15 00:57:17 +10:00
2024-04-22 17:53:24 +00:00
./configure --prefix=/usr --enable-relocatable
2008-05-15 00:57:17 +10:00
make
make DESTDIR=$PKG install
2023-09-27 10:45:37 +00:00
2024-04-22 17:53:24 +00:00
rm -rf $PKG/usr/share/doc
2023-09-27 10:45:37 +00:00
find $PKG -name '*.la' -delete
2006-11-14 09:01:22 +10:00
}