wok view json-glib/receipt @ rev 12145

clutter-gtk: Add libtool into build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Mar 14 07:12:49 2012 -0500 (2012-03-14)
parents 63f55f52c422
children f66acd3122e3
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"
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 }