21 lines
482 B
Plaintext
21 lines
482 B
Plaintext
# Description: a simple thesaurus
|
|
# URL: https://hunspell.sourceforge.net/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: hunspell
|
|
|
|
name=libmythes
|
|
version=1.2.5
|
|
release=2
|
|
source=(https://github.com/hunspell/mythes/releases/download/v$version/mythes-$version.tar.xz
|
|
mythes-1.2.0-vanilla-th-gen-idx.patch)
|
|
|
|
build() {
|
|
cd mythes-$version
|
|
|
|
patch -Np2 -i $SRC/mythes-1.2.0-vanilla-th-gen-idx.patch
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|