diff options
author | davidovski <david@davidovski.xyz> | 2022-05-03 19:59:53 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-03 19:59:53 +0100 |
commit | 751b7f3d84515715d07d92a5aed78062bd39adff (patch) | |
tree | 9bfdc04a539250f35452cbd0986ca361dd91509f /repo/system/json-c.xibuild | |
parent | 50740393013cb5fde05318d917ac4b68c58fdfa9 (diff) |
added extra files
Diffstat (limited to 'repo/system/json-c.xibuild')
-rw-r--r-- | repo/system/json-c.xibuild | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/repo/system/json-c.xibuild b/repo/system/json-c.xibuild new file mode 100644 index 0000000..339e62b --- /dev/null +++ b/repo/system/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 +} |