diff options
author | Tim Biermann <tbier@posteo.de> | 2020-06-06 21:43:11 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-06-06 21:43:42 +0000 |
commit | a5df1ab2033646a76f72a213a6b6f8a1bdd221ac (patch) | |
tree | e184b74ddad29803b7fe852955bd95a780242394 /yajl | |
parent | 97bec84b05a5f6abb6b0aede3e60bcf0feccf6ce (diff) | |
download | contrib-a5df1ab2033646a76f72a213a6b6f8a1bdd221ac.tar.gz contrib-a5df1ab2033646a76f72a213a6b6f8a1bdd221ac.tar.xz |
yajl: initial commit, version 2.1.0
Diffstat (limited to 'yajl')
-rw-r--r-- | yajl/.footprint | 19 | ||||
-rw-r--r-- | yajl/.signature | 5 | ||||
-rw-r--r-- | yajl/Pkgfile | 19 |
3 files changed, 43 insertions, 0 deletions
diff --git a/yajl/.footprint b/yajl/.footprint new file mode 100644 index 000000000..7474e87bb --- /dev/null +++ b/yajl/.footprint @@ -0,0 +1,19 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/json_reformat +-rwxr-xr-x root/root usr/bin/json_verify +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/yajl/ +-rw-rw-r-- root/root usr/include/yajl/yajl_common.h +-rw-rw-r-- root/root usr/include/yajl/yajl_gen.h +-rw-rw-r-- root/root usr/include/yajl/yajl_parse.h +-rw-rw-r-- root/root usr/include/yajl/yajl_tree.h +-rw-rw-r-- root/root usr/include/yajl/yajl_version.h +drwxr-xr-x root/root usr/lib/ +lrwxrwxrwx root/root usr/lib/libyajl.so -> libyajl.so.2 +lrwxrwxrwx root/root usr/lib/libyajl.so.2 -> libyajl.so.2.1.0 +-rwxr-xr-x root/root usr/lib/libyajl.so.2.1.0 +-rw-r--r-- root/root usr/lib/libyajl_s.a +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/pkgconfig/ +-rw-rw-r-- root/root usr/share/pkgconfig/yajl.pc diff --git a/yajl/.signature b/yajl/.signature new file mode 100644 index 000000000..820fad170 --- /dev/null +++ b/yajl/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/tb.pub +RWSXjYMPO7mZwMuO6Mjby+GNnAVYLggwtcAAym616KXETNaacipQzis/SwlrxnVePusOd3aOvS4tPxhoC5wADtOyfCDZVdfUYAA= +SHA256 (Pkgfile) = 1e64e1ce95fb7c50172caad701efcbbb2d36f1da3691ad2f6595c477564138c0 +SHA256 (.footprint) = bbf70388c9f672fabc8b2084f688b856526ce8f0f3e1c6d0faefbb88372fbb1f +SHA256 (yajl-2.1.0.tar.gz) = 3fb73364a5a30efe615046d07e6db9d09fd2b41c763c5f7d3bfb121cd5c5ac5a diff --git a/yajl/Pkgfile b/yajl/Pkgfile new file mode 100644 index 000000000..cf7e3f911 --- /dev/null +++ b/yajl/Pkgfile @@ -0,0 +1,19 @@ +# Description: Yet Another JSON Library +# URL: http://lloyd.github.com/yajl/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: cmake + +name=yajl +version=2.1.0 +release=1 +source=(https://github.com/lloyd/$name/archive/$version/$name-$version.tar.gz) + +build() { + cd $name-$version + mkdir build + cd build + cmake .. + make + install -d $PKG/usr + cp -a $name-$version/* $PKG/usr/ +} |