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/hyphen | |
parent | d1fc3393cca72e8e432f827f7624e38734fad6dc (diff) |
added deps for qemu
Diffstat (limited to 'repo/hyphen')
-rw-r--r-- | repo/hyphen/hyphen.xibuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/hyphen/hyphen.xibuild b/repo/hyphen/hyphen.xibuild new file mode 100644 index 0000000..a73915b --- /dev/null +++ b/repo/hyphen/hyphen.xibuild @@ -0,0 +1,22 @@ +#!/bin/sh + +NAME="hyphen" +DESC="Library for high quality hyphenation and justification" + +MAKEDEPS="perl" + +PKG_VER=2.8.8 +SOURCE="https://downloads.sourceforge.net/hunspell/hyphen-$PKG_VER.tar.gz" + +build() { + ./configure \ + --prefix=/usr \ + --disable-static \ + --disable-dependency-tracking \ + --enable-fast-install + make +} + +package() { + make -j1 DESTDIR="$PKG_DEST" install +} |