summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html4
-rw-r--r--src/jsoncpp.mk28
2 files changed, 32 insertions, 0 deletions
diff --git a/index.html b/index.html
index 482e0c0..1cfcc6d 100644
--- a/index.html
+++ b/index.html
@@ -1489,6 +1489,10 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<td class="website"><a href="https://www.codeproject.com/Articles/20027/JSON-Spirit-A-C-JSON-Parser-Generator-Implemented">json_spirit</a></td>
</tr>
<tr>
+ <td class="package">jsoncpp</td>
+ <td class="website"><a href="https://github.com/open-source-parsers/jsoncpp">jsoncpp</a></td>
+ </tr>
+ <tr>
<td class="package">lame</td>
<td class="website"><a href="http://lame.sourceforge.net/">lame</a></td>
</tr>
diff --git a/src/jsoncpp.mk b/src/jsoncpp.mk
new file mode 100644
index 0000000..26c0523
--- /dev/null
+++ b/src/jsoncpp.mk
@@ -0,0 +1,28 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := jsoncpp
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 1.6.5
+$(PKG)_CHECKSUM := a8354732489a4e3bf95ba801a300032e731b5aa8
+$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL := https://github.com/open-source-parsers/jsoncpp/archive/$($(PKG)_VERSION).tar.gz
+$(PKG)_DEPS := gcc
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'https://github.com/open-source-parsers/jsoncpp/archive/' | \
+ $(SED) -n 's,.*/\([0-9][^"]*\)/"\.tar.*,\1,p' | \
+ sort | uniq | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ mkdir '$(1)/build'
+ cd '$(1)/build' && cmake .. \
+ -DCMAKE_TOOLCHAIN_FILE='$(CMAKE_TOOLCHAIN_FILE)' \
+ -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF \
+ -DBUILD_STATIC_LIBS=$(if $(BUILD_STATIC),true,false) \
+ -DBUILD_SHARED_LIBS=$(if $(BUILD_STATIC),false,true)
+ $(MAKE) -C '$(1)/build' -j '$(JOBS)' install
+endef