wok view gobject-introspection/receipt @ rev 14225

freetype*: up 2.4.11; fontconfig*: up 2.10.91; add freetype-infinality* and fontconfig-infinality; gobject-introspection: up 1.32.1; gtk+3*: up 3.4.4; add gtk3-engine-solidity, gtk3-engine-unico; pixman*: up 0.28.2; add libxklavier, lightdm*; slitaz-i18n: add all existing translations.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Mar 21 16:18:40 2013 +0000 (2013-03-21)
parents 48e4ab5725f4
children 68d68791ced5
line source
1 # SliTaz package receipt.
3 PACKAGE="gobject-introspection"
4 VERSION="1.32.1"
5 CATEGORY="development"
6 SHORT_DESC="Introspection system for GObject-based libraries"
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://live.gnome.org/GObjectInstrospection"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/$HI_VERSION/$TARBALL"
13 DEPENDS="libgio"
14 BUILD_DEPENDS="flex bison glib-dev python-dev libgio-dev libffi-dev cairo-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --disable-static \
21 $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p \
30 $fs/usr/lib \
31 $fs/usr/share
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
34 cp -a $install/usr/lib/gobject-introspection $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }