summaryrefslogtreecommitdiff
path: root/repo/nlohmann-json/nlohmann-json.xibuild
blob: 1f86a3bf25275e57933a566c3fd8d15cca6c2f10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/sh

NAME="nlohmann-json"
DESC="JSON for Modern C++"

MAKEDEPS=" cmake"

PKG_VER=3.11.2
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

}

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/
}