summaryrefslogtreecommitdiff
path: root/repo/system/jsoncpp
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/jsoncpp')
-rw-r--r--repo/system/jsoncpp/jsoncpp.xibuild25
1 files changed, 0 insertions, 25 deletions
diff --git a/repo/system/jsoncpp/jsoncpp.xibuild b/repo/system/jsoncpp/jsoncpp.xibuild
deleted file mode 100644
index 01d3bb6..0000000
--- a/repo/system/jsoncpp/jsoncpp.xibuild
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make meson"
-DEPS="gcc musl"
-
-PKG_VER=1.9.5
-SOURCE=https://github.com/open-source-parsers/jsoncpp/archive/$PKG_VER.tar.gz
-DESC="JSON C++ library"
-
-build () {
- mkdir build &&
- cd build &&
-
- meson --prefix=/usr \
- --buildtype=release \
- .. &&
- ninja
-
-}
-
-package () {
- DESTDIR=$PKG_DEST ninja install
-}
-
-