wok view libjson/receipt @ rev 16792

Add libjson
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 02 20:52:57 2014 +0200 (2014-07-02)
parents
children 8d96e9390bb1
line source
1 # SliTaz package receipt.
3 PACKAGE="libjson"
4 VERSION="7.6.1"
5 CATEGORY="misc"
6 MAINTAINER="pascal.bellard@slitaz.org"
7 LICENSE="BSD"
8 SHORT_DESC="A super-effiecient JSON reader and writer."
9 WEB_SITE="http://sourceforge.net/projects/libjson/"
10 TARBALL="${PACKAGE}_$VERSION.zip"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 unset CXXFLAGS
20 mkdir Objects_static Objects_shared _internal/Source/Dependencies
21 mkdir -p $DESTDIR/usr/lib
22 sed -i 's|^in[a-z]*_path *= |&$(DESTDIR)|' makefile
23 make -j 1 SHARED=1 all &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs/
31 }