wok view edbus/receipt @ rev 5380

Up: libgio (2.25.2)
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 01 14:20:24 2010 +0200 (2010-05-01)
parents 6e90579538d6
children 85cd798d6997
line source
1 # SliTaz package receipt.
3 PACKAGE="edbus"
4 VERSION="0.5.0.063"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 wrappers around dbus."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="dbus ecore glibc-base libtasn1"
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-12-02/$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 }