wok view edje/receipt @ rev 14643

Xorg. xorg-libXfixes: reformat; xorg-libXcomposite: up 0.4.4; xorg-libXrender: back 0.9.7 (latest Xorg mirror version is 0.9.7).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jun 02 18:41:37 2013 +0000 (2013-06-02)
parents 0941341ce316
children 31a6adc04a15
line source
1 # SliTaz package receipt.
3 PACKAGE="edje"
4 VERSION="1.7.6"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
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 lua5.1"
14 BUILD_DEPENDS="embryo-dev ecore-dev lua5.1-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 chmod 755 $fs/usr/bin/*
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/edje $fs/usr/lib
37 }