wok view edbus/receipt @ rev 17213

Up pgadmin (1.18.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Oct 10 16:34:25 2014 +0200 (2014-10-10)
parents 89d9b91d9d47
children 86790a278e70
line source
1 # SliTaz package receipt.
3 PACKAGE="edbus"
4 VERSION="1.7.10"
5 CATEGORY="x-window"
6 SHORT_DESC="EFL Dbus wrapping and glue layer library. "
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 SOURCE="e_dbus"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.enlightenment.org/"
12 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
13 TAGS="e enlightenment efl"
14 HOST_ARCH="i486 arm"
16 DEPENDS="ecore dbus"
17 BUILD_DEPENDS="ecore-dev dbus-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export CFLAGS="$CFLAGS -fvisibility=hidden"
23 export LDFLAGS="$LDFLAGS -fvisibility=hidden"
24 ./configure --disable-doc $CONFIGURE_ARGS &&
25 make $MAKEFILE && make 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 $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }