wok view ecore/receipt @ rev 14979

Up: thunderbird-langpack-es_ES (17.0.8esr)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 22:21:05 2013 +0200 (2013-08-08)
parents 83348a2c5b1f
children d3e76f1e0aee
line source
1 # SliTaz package receipt.
3 PACKAGE="ecore"
4 VERSION="1.7.8"
5 CATEGORY="base-system"
6 SHORT_DESC="EFL core event and OS abstraction layer"
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="evas libcurl"
14 BUILD_DEPENDS="evas-dev curl-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 $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }