wok view edbus/receipt @ rev 3973

merge
author Christophe Lincoln <pankso@slitaz.org>
date Thu Aug 27 11:36:57 2009 +0200 (2009-08-27)
parents e3f84bde9be8
children 2c110965aa8b
line source
1 # SliTaz package receipt.
3 PACKAGE="edbus"
4 VERSION="0.5.0.060"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 wrappers around dbus."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="dbus ecore"
9 BUILD_DEPENDS="dbus-dev ecore-dev ecore"
10 SOURCE="e_dbus"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="http://download.enlightenment.org/snapshots/2009-04-22/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 }