summaryrefslogtreecommitdiff
path: root/repo/system/expat/expat.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/expat/expat.xibuild')
-rw-r--r--repo/system/expat/expat.xibuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/system/expat/expat.xibuild b/repo/system/expat/expat.xibuild
new file mode 100644
index 0000000..d921e1b
--- /dev/null
+++ b/repo/system/expat/expat.xibuild
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+MAKEDEPS="make "
+DEPS="musl"
+
+PKG_VER=2.4.2
+SOURCE=https://github.com/libexpat/libexpat/releases/download/R_$(echo $PKG_VER | sed "s|\.|_|g")/expat-$PKG_VER.tar.xz
+DESC="An XML parser library"
+
+build () {
+ ./configure --prefix=/usr --disable-static --docdir=/usr/share/doc/expat-$PKG_VER
+ make
+}
+
+check () {
+ make check
+}
+
+package () {
+ make DESTDIR=$PKG_DEST install
+ install -m644 doc/* $PKG_DEST/usr/share/doc/expat-$PKG_VER
+}