wok view libgee/receipt @ rev 14739

libgnomecanvasmm, libglademm: fix for the new gtkmm
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 14 08:11:47 2013 +0200 (2013-06-14)
parents 470a20dac052
children b23839382755
line source
1 # SliTaz package receipt.
3 PACKAGE="libgee"
4 VERSION="0.9.92"
5 CATEGORY="x-window"
6 SHORT_DESC="GObject collection library."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://live.gnome.org/Libgee"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 SERIES="$(echo $VERSION | cut -d. -f1,2)"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/$SERIES/$TARBALL"
14 DEPENDS="glib libffi"
15 BUILD_DEPENDS="bash vala gobject-introspection-dev sed glib-dev libffi-dev sed"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-introspection=yes \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }