diff options
author | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
commit | d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch) | |
tree | 684a17eebf446aa1adab1097616f1882c8d51568 /repo/mythes/mythes.xibuild | |
parent | d1fc3393cca72e8e432f827f7624e38734fad6dc (diff) |
added deps for qemu
Diffstat (limited to 'repo/mythes/mythes.xibuild')
-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 +} |