diff options
Diffstat (limited to 'repo/mythes')
-rw-r--r-- | repo/mythes/mythes.xibuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/mythes/mythes.xibuild b/repo/mythes/mythes.xibuild new file mode 100644 index 0000000..07a5ba4 --- /dev/null +++ b/repo/mythes/mythes.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +NAME="mythes" +DESC="A simple thesaurus" + +MAKEDEPS=" perl hunspell" + +PKG_VER=1.2.4 +SOURCE="https://downloads.sourceforge.net/hunspell/mythes-$PKG_VER.tar.gz" + +build() { + ./configure \ + --prefix=/usr \ + --disable-static \ + --disable-dependency-tracking \ + --enable-fast-install + make +} + +package() { + make -j1 DESTDIR="$PKG_DEST" install +} |