wok view efreet/receipt @ rev 14346

tcc-arm, tcc-win32: update binary names
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 14 15:11:54 2013 +0200 (2013-04-14)
parents 963609b67ded
children ea6d65e23c65
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="e17"
13 DEPENDS="eina eet ecore"
14 BUILD_DEPENDS="eina-dev eet-dev ecore-dev jpeg-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 }