From ccc722b7ed330198d82a3cf28ead76d6d107a70a Mon Sep 17 00:00:00 2001 From: davidovski Date: Mon, 6 Jun 2022 21:25:48 +0000 Subject: added java --- repo/nlohmann-json/nlohmann-json.xibuild | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 repo/nlohmann-json/nlohmann-json.xibuild (limited to 'repo/nlohmann-json') diff --git a/repo/nlohmann-json/nlohmann-json.xibuild b/repo/nlohmann-json/nlohmann-json.xibuild new file mode 100644 index 0000000..81dcba0 --- /dev/null +++ b/repo/nlohmann-json/nlohmann-json.xibuild @@ -0,0 +1,34 @@ +#!/bin/sh + +NAME="nlohmann-json" +DESC="JSON for Modern C++" + +MAKEDEPS=" cmake" + +PKG_VER=3.10.5 +SOURCE="https://github.com/nlohmann/json/archive/v$PKG_VER.tar.gz" + +build() { + cmake -B build \ + -DCMAKE_BUILD_TYPE=None \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DJSON_MultipleHeaders=ON + cmake --build build + + make -C doc +} + +check() { + cd build + CTEST_OUTPUT_ON_FAILURE=TRUE ctest -E "cmake_fetch_content_(configure|build)" + cd $BUILD_ROOT +} + +package() { + DESTDIR="$PKG_DEST" cmake --install build + + install -dm755 "$PKG_DEST"/usr/share/doc/nlohmann-json + mv doc/mkdocs "$PKG_DEST"/usr/share/doc/nlohmann-json/ +} + -- cgit v1.2.1