summaryrefslogtreecommitdiff
path: root/repo/json-c/json-c.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/json-c/json-c.xibuild')
-rw-r--r--repo/json-c/json-c.xibuild23
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/json-c/json-c.xibuild b/repo/json-c/json-c.xibuild
new file mode 100644
index 0000000..339e62b
--- /dev/null
+++ b/repo/json-c/json-c.xibuild
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+NAME="json-c"
+DESC="A JSON implementation in C"
+
+MAKEDEPS="cmake "
+DEPS="musl "
+
+PKG_VER=0.15
+SOURCE="https://s3.amazonaws.com/json-c_releases/releases/json-c-$PKG_VER.tar.gz"
+
+build () {
+ cmake -B build \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DBUILD_STATIC_LIBS=OFF
+ cmake --build build
+}
+
+package () {
+ DESTDIR="$PKG_DEST" cmake --install build
+}