wok view json-glib/receipt @ rev 14310

Up: elementary (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:22:40 2013 +0200 (2013-04-07)
parents ab75a8415135
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="json-glib"
4 VERSION="0.14.2"
5 CATEGORY="development"
6 SHORT_DESC="JSON-GLib is a library providing serialization and deserialization support for the JavaScript Object Notation"
7 MAINTAINER="mallory@sweetpeople.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://live.gnome.org/JsonGlib"
10 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL"
11 TAGS="javascript"
13 DEPENDS="libgio glib"
14 BUILD_DEPENDS="pkg-config gobject-introspection-dev libgio-dev glib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib
30 }