wok-next rev 2913
Add edbus (E17 wrappers around dbu)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed May 06 22:55:12 2009 +0200 (2009-05-06) |
parents | fee4476bdf6a |
children | 7f68816e9c1d |
files | edbus-dev/receipt edbus/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/edbus-dev/receipt Wed May 06 22:55:12 2009 +0200 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="edbus-dev" 1.7 +VERSION="0.5.0.060" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="E17 dbus devel files." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +DEPENDS="dbus-dev ecore-dev" 1.12 +WANTED="edbus" 1.13 +SOURCE="e_dbus" 1.14 +WEB_SITE="http://www.enlightenment.org/" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + mkdir -p $fs/usr/lib 1.20 + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg 1.21 + cp -a $_pkg/usr/include $fs/usr 1.22 + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib 1.23 + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/edbus/receipt Wed May 06 22:55:12 2009 +0200 2.3 @@ -0,0 +1,35 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="edbus" 2.7 +VERSION="0.5.0.060" 2.8 +CATEGORY="x-window" 2.9 +SHORT_DESC="E17 wrappers around dbus." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +DEPENDS="dbus ecore" 2.12 +BUILD_DEPENDS="dbus-dev ecore-dev" 2.13 +SOURCE="e_dbus" 2.14 +TARBALL="$SOURCE-$VERSION.tar.bz2" 2.15 +WEB_SITE="http://www.enlightenment.org/" 2.16 +WGET_URL="http://download.enlightenment.org/snapshots/2009-04-22/$TARBALL" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 +compile_rules() 2.20 +{ 2.21 + cd $src 2.22 + ./configure \ 2.23 + --prefix=/usr \ 2.24 + --infodir=/usr/share/info \ 2.25 + --mandir=/usr/share/man \ 2.26 + $CONFIGURE_ARGS && 2.27 + make && 2.28 + make DESTDIR=$PWD/_pkg install 2.29 +} 2.30 + 2.31 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.32 +genpkg_rules() 2.33 +{ 2.34 + mkdir -p $fs/usr/lib 2.35 + cp -a $_pkg/usr/bin $fs/usr 2.36 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 2.37 +} 2.38 +