1
0
forked from ports/contrib

yajl: initial commit, version 2.1.0

This commit is contained in:
Tim Biermann 2020-06-06 21:43:11 +00:00
parent 97bec84b05
commit a5df1ab203
3 changed files with 43 additions and 0 deletions

19
yajl/.footprint Normal file
View File

@ -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

5
yajl/.signature Normal file
View File

@ -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

19
yajl/Pkgfile Normal file
View File

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