diff options
author | Juergen Daubert <jue@jue.li> | 2013-04-07 09:53:44 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2013-04-07 09:53:44 +0200 |
commit | 9b357b7b1ef72c7dd02f823147de86f7bb2faac1 (patch) | |
tree | de446d3b41e2ec46132a6d711f0e0773ea505fec /json-c | |
parent | 8032f8a8e71101819086470b3da9261c5aa715fc (diff) | |
download | opt-9b357b7b1ef72c7dd02f823147de86f7bb2faac1.tar.gz opt-9b357b7b1ef72c7dd02f823147de86f7bb2faac1.tar.xz |
[notify] json-c: update to 0.11
Note:
-----
becasue of the "symlink" bug [1] in pkgadd manual
interaction after building the package is required.
Use the -f, --force option to update json-c.
[1] http://crux.nu/bugs/?do=details&task_id=15
Diffstat (limited to 'json-c')
-rw-r--r-- | json-c/.footprint | 36 | ||||
-rw-r--r-- | json-c/.md5sum | 2 | ||||
-rw-r--r-- | json-c/Pkgfile | 5 |
3 files changed, 25 insertions, 18 deletions
diff --git a/json-c/.footprint b/json-c/.footprint index 618d550bc..252b09570 100644 --- a/json-c/.footprint +++ b/json-c/.footprint @@ -1,24 +1,32 @@ 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_config.h --rw-r--r-- root/root usr/include/json/json_inttypes.h --rw-r--r-- root/root usr/include/json/json_object.h --rw-r--r-- root/root usr/include/json/json_object_iterator.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 +lrwxrwxrwx root/root usr/include/json -> json-c +drwxr-xr-x root/root usr/include/json-c/ +-rw-r--r-- root/root usr/include/json-c/arraylist.h +-rw-r--r-- root/root usr/include/json-c/bits.h +-rw-r--r-- root/root usr/include/json-c/debug.h +-rw-r--r-- root/root usr/include/json-c/json.h +-rw-r--r-- root/root usr/include/json-c/json_c_version.h +-rw-r--r-- root/root usr/include/json-c/json_config.h +-rw-r--r-- root/root usr/include/json-c/json_inttypes.h +-rw-r--r-- root/root usr/include/json-c/json_object.h +-rw-r--r-- root/root usr/include/json-c/json_object_iterator.h +-rw-r--r-- root/root usr/include/json-c/json_object_private.h +-rw-r--r-- root/root usr/include/json-c/json_tokener.h +-rw-r--r-- root/root usr/include/json-c/json_util.h +-rw-r--r-- root/root usr/include/json-c/linkhash.h +-rw-r--r-- root/root usr/include/json-c/printbuf.h drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libjson-c.a +-rwxr-xr-x root/root usr/lib/libjson-c.la +lrwxrwxrwx root/root usr/lib/libjson-c.so -> libjson-c.so.2.0.1 +lrwxrwxrwx root/root usr/lib/libjson-c.so.2 -> libjson-c.so.2.0.1 +-rwxr-xr-x root/root usr/lib/libjson-c.so.2.0.1 -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.1.0 lrwxrwxrwx root/root usr/lib/libjson.so.0 -> libjson.so.0.1.0 -rwxr-xr-x root/root usr/lib/libjson.so.0.1.0 drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/json-c.pc -rw-r--r-- root/root usr/lib/pkgconfig/json.pc diff --git a/json-c/.md5sum b/json-c/.md5sum index 76cb61471..922b0e15f 100644 --- a/json-c/.md5sum +++ b/json-c/.md5sum @@ -1 +1 @@ -a4edc79410eb894f08d7d52ca9f88732 json-c-0.10.tar.gz +aa02367d2f7a830bf1e3376f77881e98 json-c-0.11.tar.gz diff --git a/json-c/Pkgfile b/json-c/Pkgfile index 6ee9a3ccc..a6f0456e0 100644 --- a/json-c/Pkgfile +++ b/json-c/Pkgfile @@ -3,14 +3,13 @@ # Maintainer: Juergen Daubert, jue at crux dot nu name=json-c -version=0.10 +version=0.11 release=1 source=(https://s3.amazonaws.com/json-c_releases/releases/$name-$version.tar.gz) build() { cd $name-$version ./configure --prefix=/usr - make + make -j1 make DESTDIR=$PKG install - install -m 0644 json_object_iterator.h $PKG/usr/include/json } |