2019-08-11 11:14:03 +02:00
|
|
|
# Description: a simple thesaurus
|
2023-05-28 10:31:20 +02:00
|
|
|
# URL: https://hunspell.sourceforge.net/
|
2019-08-11 11:14:03 +02:00
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: hunspell
|
|
|
|
|
|
|
|
name=libmythes
|
2022-08-25 21:39:49 +02:00
|
|
|
version=1.2.5
|
2023-01-28 14:42:58 +01:00
|
|
|
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)
|
2019-08-11 11:14:03 +02:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd mythes-$version
|
2023-01-28 14:42:58 +01:00
|
|
|
|
|
|
|
patch -Np2 -i $SRC/mythes-1.2.0-vanilla-th-gen-idx.patch
|
|
|
|
|
2019-08-11 11:14:03 +02:00
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|