jsoncpp: initial commit, version 1.9.4

This commit is contained in:
Tim Biermann 2021-06-15 21:24:36 +00:00
parent 15c79bee8b
commit 01a775b5e0
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 42 additions and 0 deletions

18
jsoncpp/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/json/
-rw-r--r-- root/root usr/include/json/allocator.h
-rw-r--r-- root/root usr/include/json/assertions.h
-rw-r--r-- root/root usr/include/json/config.h
-rw-r--r-- root/root usr/include/json/forwards.h
-rw-r--r-- root/root usr/include/json/json.h
-rw-r--r-- root/root usr/include/json/json_features.h
-rw-r--r-- root/root usr/include/json/reader.h
-rw-r--r-- root/root usr/include/json/value.h
-rw-r--r-- root/root usr/include/json/version.h
-rw-r--r-- root/root usr/include/json/writer.h
drwxr-xr-x root/root usr/lib/
lrwxrwxrwx root/root usr/lib/libjsoncpp.so -> libjsoncpp.so.24
-rwxr-xr-x root/root usr/lib/libjsoncpp.so.24
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/jsoncpp.pc

5
jsoncpp/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37HMFF+eQfNf56IIFdqvwmkP5jWUaMqHVX5v3o/Ye+rPQr8hPcX+h2D+RIdGqUsJaXBrjV507LcoJyk9QsEXqw4=
SHA256 (Pkgfile) = a5bac49033f1a84a00ee9036cc1ca6efa475ab59f720dc1e5250e88008e3ff76
SHA256 (.footprint) = 7cbb8780f418f9577ecc85fc637fc9b589c1f6bde58d4289258b005720f38d0c
SHA256 (jsoncpp-1.9.4.tar.gz) = e34a628a8142643b976c7233ef381457efad79468c67cb1ae0b83a33d7493999

19
jsoncpp/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: C++ library for interacting with JSON
# URL: https://github.com/open-source-parsers/jsoncpp
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: meson ninja
name=jsoncpp
version=1.9.4
release=1
source=(https://github.com/open-source-parsers/jsoncpp/archive/$version/$name-$version.tar.gz)
build() {
echo ${version} > $name-$version/version
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
--default-library shared
meson compile -C build
DESTDIR=$PKG meson install -C build
}