blob: d394554677b40a55bcd2f1d1ca78043b9ba7aa38 (
plain)
1 # Description: a simple thesaurus
2 # URL: http://hunspell.sourceforge.net/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: hunspell
5
6 name=libmythes
7 version=1.2.4
8 release=1
9 source=(https://downloads.sourceforge.net/project/hunspell/MyThes/$version/${name/lib/}-$version.tar.gz)
10
11 build() {
12 cd mythes-$version
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 }
|