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