diff options
author | Juergen Daubert <jue@jue.li> | 2012-01-15 16:30:56 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2012-01-15 16:30:56 +0100 |
commit | 295e3fd080b4642c949765502cb286188b3542ba (patch) | |
tree | 11b40cfd09c96787fbdc1c5094a4205e0e01befe /json-c | |
parent | 30fcfd6c63eca2f7b5f5572660861d5f19514fcb (diff) | |
download | opt-295e3fd080b4642c949765502cb286188b3542ba.tar.gz opt-295e3fd080b4642c949765502cb286188b3542ba.tar.xz |
json-c: initial release
Diffstat (limited to 'json-c')
-rw-r--r-- | json-c/.footprint | 21 | ||||
-rw-r--r-- | json-c/.md5sum | 1 | ||||
-rw-r--r-- | json-c/Pkgfile | 15 |
3 files changed, 37 insertions, 0 deletions
diff --git a/json-c/.footprint b/json-c/.footprint new file mode 100644 index 000000000..6f14f3a76 --- /dev/null +++ b/json-c/.footprint @@ -0,0 +1,21 @@ +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/arraylist.h +-rw-r--r-- root/root usr/include/json/bits.h +-rw-r--r-- root/root usr/include/json/debug.h +-rw-r--r-- root/root usr/include/json/json.h +-rw-r--r-- root/root usr/include/json/json_object.h +-rw-r--r-- root/root usr/include/json/json_object_private.h +-rw-r--r-- root/root usr/include/json/json_tokener.h +-rw-r--r-- root/root usr/include/json/json_util.h +-rw-r--r-- root/root usr/include/json/linkhash.h +-rw-r--r-- root/root usr/include/json/printbuf.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libjson.a +-rwxr-xr-x root/root usr/lib/libjson.la +lrwxrwxrwx root/root usr/lib/libjson.so -> libjson.so.0.0.1 +lrwxrwxrwx root/root usr/lib/libjson.so.0 -> libjson.so.0.0.1 +-rwxr-xr-x root/root usr/lib/libjson.so.0.0.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/json.pc diff --git a/json-c/.md5sum b/json-c/.md5sum new file mode 100644 index 000000000..28d3e608f --- /dev/null +++ b/json-c/.md5sum @@ -0,0 +1 @@ +3a13d264528dcbaf3931b0cede24abae json-c-0.9.tar.gz diff --git a/json-c/Pkgfile b/json-c/Pkgfile new file mode 100644 index 000000000..341c9ac55 --- /dev/null +++ b/json-c/Pkgfile @@ -0,0 +1,15 @@ +# Description: JSON implementation in C +# URL: http://oss.metaparadigm.com/json-c/ +# Maintainer: Juergen Daubert, jue at crux dot nu + +name=json-c +version=0.9 +release=1 +source=(http://oss.metaparadigm.com/$name/$name-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |