wok view edbus/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents 86790a278e70
children b01314c762e9
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="https://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 }