wok view edbus/receipt @ rev 9145

Trying to fix VINRUNTIMEDIR (Thanks kans)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Mar 06 22:02:23 2011 +0100 (2011-03-06)
parents b68b4f934ba7
children bac62e02f000
line source
1 # SliTaz package receipt.
3 PACKAGE="edbus"
4 VERSION="1.0.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Enlightenment's (Ecore) integration to DBus"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="dbus ecore"
9 BUILD_DEPENDS=""
10 SOURCE="e_dbus"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure && make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }