diff options
author | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-06 21:25:48 +0000 |
commit | ccc722b7ed330198d82a3cf28ead76d6d107a70a (patch) | |
tree | 7611b3cc4f3ca681524fa28b174a0253eb802e0e /repo/nlohmann-json/nlohmann-json.xibuild | |
parent | 9ee32689f0b57b9e1de6d22c84ce8e3700b6122b (diff) |
added java
Diffstat (limited to 'repo/nlohmann-json/nlohmann-json.xibuild')
-rw-r--r-- | repo/nlohmann-json/nlohmann-json.xibuild | 34 |
1 files changed, 34 insertions, 0 deletions
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/ +} + |