# HG changeset patch # User Christophe Lincoln # Date 1332717883 -7200 # Node ID a4f598c02a374cdeca19866d03cff55bdcaf0648 # Parent 46b791df51ecd3ee34ebd1372e8111710b9f8d5a Add libgee (may be used in SliTaz Vala apps) diff -r 46b791df51ec -r a4f598c02a37 libgee-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgee-dev/receipt Mon Mar 26 01:24:43 2012 +0200 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="libgee-dev" +VERSION="0.6.4" +CATEGORY="development" +SHORT_DESC="GObject collection library devel files." +MAINTAINER="pankso@slitaz.org" +WEB_SITE="http://live.gnome.org/Libgee" +WANTED="libgee" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr + cp -a $install/usr/share $fs/usr +} diff -r 46b791df51ec -r a4f598c02a37 libgee/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libgee/receipt Mon Mar 26 01:24:43 2012 +0200 @@ -0,0 +1,28 @@ +# SliTaz package receipt. + +PACKAGE="libgee" +VERSION="0.6.4" +CATEGORY="x-window" +SHORT_DESC="GObject collection library." +MAINTAINER="pankso@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.xz" +WEB_SITE="http://live.gnome.org/Libgee" +WGET_URL="$GNOME_MIRROR/libgee/0.6/$TARBALL" + +DEPENDS="glib libffi" +BUILD_DEPENDS="glib-dev libffi-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure $CONFIGURE_ARGS && + make && make install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -s $install/usr/lib/*.so* $fs/usr/lib +}