wok view libgee/receipt @ rev 14239

libgee: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 22 15:13:49 2013 +0100 (2013-03-22)
parents f97cdf01aa31
children 4904e3d374a9
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 WEB_SITE="http://live.gnome.org/Libgee"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 SERIES="$(echo $VERSION | cut -d. -f1,2)"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/$SERIES/$TARBALL"
13 DEPENDS="glib libffi"
14 BUILD_DEPENDS="bash vala gobject-introspection-dev sed glib-dev libffi-dev sed"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --enable-introspection=yes \
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 $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }