summaryrefslogtreecommitdiff
path: root/repo/system/icu.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/icu.xibuild')
-rw-r--r--repo/system/icu.xibuild20
1 files changed, 20 insertions, 0 deletions
diff --git a/repo/system/icu.xibuild b/repo/system/icu.xibuild
new file mode 100644
index 0000000..be85b1e
--- /dev/null
+++ b/repo/system/icu.xibuild
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+MAKEDEPS=(python)
+DEPS=(bash)
+
+PKG_VER=70.1
+SOURCE=https://github.com/unicode-org/icu/releases/download/release-$(echo $PKG_VER | sed 's/\./-/g')/icu4c-$(echo $PKG_VER | sed 's/\./_/g')-src.tgz
+DESC="International Components for Unicode library"
+
+build () {
+ cd source &&
+
+ ./configure --prefix=/usr &&
+ make
+
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+}