From d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 Mon Sep 17 00:00:00 2001 From: davidovski Date: Wed, 15 Jun 2022 20:02:02 +0100 Subject: added deps for qemu --- repo/hyphen/hyphen.xibuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 repo/hyphen/hyphen.xibuild (limited to 'repo/hyphen') 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 +} -- cgit v1.2.1