wok-next view json-glib/receipt @ rev 20083

gst1-plugins-good: receipt v2
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Oct 25 12:49:39 2017 +0200 (2017-10-25)
parents 76b72f1ad63c
children 58d6577fec38
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://live.gnome.org/JsonGlib"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL"
12 TAGS="javascript"
14 DEPENDS="glib"
15 BUILD_DEPENDS="pkg-config gobject-introspection-dev glib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
31 }