wok-next view edbus/receipt @ rev 20441
linux, linux-dev: fix mess with i386|i486, update 32bit config
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Feb 24 05:41:11 2018 +0200 (2018-02-24) |
parents | 689fcc83daec |
children | c4e53a39395a |
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="http://www.enlightenment.org/"
10 HOST_ARCH="i486 arm"
12 TARBALL="e_dbus-$VERSION.tar.bz2"
13 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
15 BUILD_DEPENDS="ecore-dev dbus-dev"
16 SPLIT="edbus-dev"
18 compile_rules() {
19 export CFLAGS="$CFLAGS -fvisibility=hidden"
20 export LDFLAGS="$LDFLAGS -fvisibility=hidden"
22 ./configure \
23 --disable-doc \
24 $CONFIGURE_ARGS &&
25 make $MAKEFILE && make install
26 }
28 genpkg_rules() {
29 case $PACKAGE in
30 edbus)
31 copy @std
32 DEPENDS="ecore dbus"
33 TAGS="e enlightenment efl"
34 ;;
35 edbus-dev)
36 copy @dev
37 DEPENDS="ecore-dev dbus-dev pkg-config"
38 ;;
39 esac
40 }