wok view edje/receipt @ rev 14393

Up imagemagick (6.8.4-10)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 23 13:24:18 2013 +0200 (2013-04-23)
parents 179fb827a652
children 692e6782eee2
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"
12 DEPENDS="eina eet evas embryo ecore lua5.1"
13 BUILD_DEPENDS="eina-dev eet-dev evas-dev embryo-dev ecore-dev lua5.1-dev \
14 jpeg-dev expat-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 }