wok view efreet/receipt @ rev 14409

eeze-dev: update deps
author Dominique Corbex <domcox@slitaz.org>
date Tue Apr 23 18:28:25 2013 +0200 (2013-04-23)
parents 0941341ce316
children 7e8dc34442ec
line source
1 # SliTaz package receipt.
3 PACKAGE="efreet"
4 VERSION="1.7.6"
5 CATEGORY="base-system"
6 SHORT_DESC="E17 implementation of several specifications from freedesktop.org."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
11 TAGS="e enlightenment efl"
13 DEPENDS="ecore"
14 BUILD_DEPENDS="ecore-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 CFLAGS="$CFLAGS -fvisibility=hidden"
20 LDFLAGS="$LDFLAGS -fvisibility=hidden"
21 export LDFLAGS
22 ./configure \
23 --disable-doc \
24 $CONFIGURE_ARGS &&
25 make && 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/share $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/lib/efreet $fs/usr/lib
36 }