commit 801ad0ae138852231399abd9cc639af30684baa2 Author: Alan Mizrahi <alan+crux@mizrahi.com.ve> Date: Tue Feb 4 17:43:30 2014 +0900 jsoncpp: Initial commit diff --git a/jsoncpp/.footprint b/jsoncpp/.footprint new file mode 100644 index 0000000..a6bf41a --- /dev/null +++ b/jsoncpp/.footprint @@ -0,0 +1,14 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/jsoncpp/ +drwxr-xr-x root/root usr/include/jsoncpp/json/ +-rw-r--r-- root/root usr/include/jsoncpp/json/autolink.h +-rw-r--r-- root/root usr/include/jsoncpp/json/config.h +-rw-r--r-- root/root usr/include/jsoncpp/json/features.h +-rw-r--r-- root/root usr/include/jsoncpp/json/forwards.h +-rw-r--r-- root/root usr/include/jsoncpp/json/json.h +-rw-r--r-- root/root usr/include/jsoncpp/json/reader.h +-rw-r--r-- root/root usr/include/jsoncpp/json/value.h +-rw-r--r-- root/root usr/include/jsoncpp/json/writer.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libjsoncpp.so diff --git a/jsoncpp/.md5sum b/jsoncpp/.md5sum new file mode 100644 index 0000000..7a8b4c3 --- /dev/null +++ b/jsoncpp/.md5sum @@ -0,0 +1 @@ +24482b67c1cb17aac1ed1814288a3a8f jsoncpp-src-0.5.0.tar.gz diff --git a/jsoncpp/Pkgfile b/jsoncpp/Pkgfile new file mode 100644 index 0000000..21b91cd --- /dev/null +++ b/jsoncpp/Pkgfile @@ -0,0 +1,17 @@ +# Description: JSON library +# URL: http://jsoncpp.sourceforge.net/ +# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve +# Depends on: scons + +name=jsoncpp +version=0.5.0 +release=1 +source=(http://downloads.sf.net/$name/$name-src-$version.tar.gz) + +build () { + cd $name-src-$version + scons platform=linux-gcc + mkdir -p $PKG/usr/{include/jsoncpp,lib} + cp -r include/json $PKG/usr/include/jsoncpp/ + cp libs/linux-gcc-*/libjson_linux-gcc-*_libmt.so $PKG/usr/lib/libjsoncpp.so +}