From 751b7f3d84515715d07d92a5aed78062bd39adff Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 3 May 2022 19:59:53 +0100 Subject: added extra files --- repo/system/json-c.xibuild | 23 +++++++++++++++++++++++ repo/system/json-glib.xibuild | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 repo/system/json-c.xibuild create mode 100644 repo/system/json-glib.xibuild (limited to 'repo/system') 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 +} diff --git a/repo/system/json-glib.xibuild b/repo/system/json-glib.xibuild new file mode 100644 index 0000000..ce9f0b5 --- /dev/null +++ b/repo/system/json-glib.xibuild @@ -0,0 +1,23 @@ +#!/bin/sh + +NAME="json-glib" +DESC="JSON library built on GLib" + +MAKEDEPS="meson ninja " +DEPS="glib musl " + +PKG_VER=1.6.6 +SOURCE="https://download.gnome.org/sources/json-glib/${PKG_VER%.*}/json-glib-$PKG_VER.tar.xz" + +build () { + mkdir build && + cd build && + meson --prefix=/usr \ + -Dgtk_doc=disabled \ + .. && + ninja +} + +package () { + DESTDIR=$PKG_DEST ninja install +} -- cgit v1.2.1