forked from ports/contrib
22 lines
506 B
Plaintext
22 lines
506 B
Plaintext
# Description: A wrapper library for generic spell checking.
|
|
# URL: https://abiword.github.io/enchant/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: aspell glib hunspell
|
|
|
|
name=enchant
|
|
version=2.1.2
|
|
release=1
|
|
source=(https://github.com/$name/$name/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-myspell-dir=/usr/share/myspell
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|