# HG changeset patch # User Christophe Lincoln # Date 1241643312 -7200 # Node ID e3f84bde9be8c8f62f2c2818de0b05626cd9b0bc # Parent fee4476bdf6a8f9f1fb6e51f595b1e96482ffc3f Add edbus (E17 wrappers around dbu) diff -r fee4476bdf6a -r e3f84bde9be8 edbus-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/edbus-dev/receipt Wed May 06 22:55:12 2009 +0200 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="edbus-dev" +VERSION="0.5.0.060" +CATEGORY="development" +SHORT_DESC="E17 dbus devel files." +MAINTAINER="pankso@slitaz.org" +DEPENDS="dbus-dev ecore-dev" +WANTED="edbus" +SOURCE="e_dbus" +WEB_SITE="http://www.enlightenment.org/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} diff -r fee4476bdf6a -r e3f84bde9be8 edbus/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/edbus/receipt Wed May 06 22:55:12 2009 +0200 @@ -0,0 +1,35 @@ +# SliTaz package receipt. + +PACKAGE="edbus" +VERSION="0.5.0.060" +CATEGORY="x-window" +SHORT_DESC="E17 wrappers around dbus." +MAINTAINER="pankso@slitaz.org" +DEPENDS="dbus ecore" +BUILD_DEPENDS="dbus-dev ecore-dev" +SOURCE="e_dbus" +TARBALL="$SOURCE-$VERSION.tar.bz2" +WEB_SITE="http://www.enlightenment.org/" +WGET_URL="http://download.enlightenment.org/snapshots/2009-04-22/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +} +