23 lines
525 B
Plaintext
23 lines
525 B
Plaintext
# Description: A wrapper library for generic spell checking.
|
|
# URL: https://abiword.github.io/enchant/
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: aspell glib
|
|
# Optional: hunspell
|
|
|
|
name=enchant
|
|
version=2.6.3
|
|
release=1
|
|
source=(https://github.com/AbiWord/$name/releases/download/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
find $PKG -name '*.la' -delete
|
|
}
|