summaryrefslogtreecommitdiff
path: root/repo/libunistring/libunistring.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/libunistring/libunistring.xibuild')
-rw-r--r--repo/libunistring/libunistring.xibuild19
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/libunistring/libunistring.xibuild b/repo/libunistring/libunistring.xibuild
new file mode 100644
index 0000000..286b0c8
--- /dev/null
+++ b/repo/libunistring/libunistring.xibuild
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+MAKEDEPS="make "
+DEPS="musl"
+
+PKG_VER=0.9.10
+SOURCE=https://ftp.gnu.org/gnu/libunistring/libunistring-$PKG_VER.tar.gz
+DESC="Library for manipulating Unicode strings and C strings"
+
+build () {
+
+ ./configure \
+ --prefix=/usr
+ make
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}