wok view edbus/receipt @ rev 14609

Up: python to 2.7.5.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 31 20:37:08 2013 +0000 (2013-05-31)
parents 0941341ce316
children 5859c84100c0
line source
1 # SliTaz package receipt.
3 PACKAGE="edbus"
4 VERSION="1.7.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Enlightenment's (Ecore) integration to DBus"
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="e_dbus"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
12 TAGS="e enlightenment efl"
14 DEPENDS="ecore dbus"
15 BUILD_DEPENDS="ecore-dev dbus-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 CFLAGS="$CFLAGS -fvisibility=hidden"
21 LDFLAGS="$LDFLAGS -fvisibility=hidden"
22 export LDFLAGS
23 ./configure \
24 --disable-doc \
25 $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }