wok view edje/receipt @ rev 14953

Up: elementary (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:16:07 2013 +0200 (2013-08-08)
parents 31a6adc04a15
children d3e76f1e0aee
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="1.7.8"
5 CATEGORY="x-window"
6 SHORT_DESC="EFL Abstract GUI layout and animation object library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
11 TAGS="e enlightenment efl"
13 DEPENDS="embryo ecore lua"
14 BUILD_DEPENDS="embryo-dev ecore-dev lua-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 $MAKEFILE && 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 chmod 755 $fs/usr/bin/*
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/lib/edje $fs/usr/lib
36 }