summaryrefslogtreecommitdiff
path: root/repo/mythes/mythes.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/mythes/mythes.xibuild')
-rw-r--r--repo/mythes/mythes.xibuild22
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
+}