wok view efreet/receipt @ rev 14857

Up: libvncserver (0.9.9), again
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 20 13:14:04 2013 +0000 (2013-07-20)
parents ea6d65e23c65
children e10a14426f60
line source
1 # SliTaz package receipt.
3 PACKAGE="efreet"
4 VERSION="1.7.7"
5 CATEGORY="base-system"
6 SHORT_DESC="EFL library for handling of freedesktop.org specs."
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
23 ./configure --disable-doc $CONFIGURE_ARGS &&
24 make $MAKEFLAGS && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 cp -a $install/usr/lib/efreet $fs/usr/lib
35 }