wok view ecore/receipt @ rev 14457

Up: nagios-nrpe (2.14)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Apr 27 02:50:36 2013 +0200 (2013-04-27)
parents 0941341ce316
children 83348a2c5b1f
line source
1 # SliTaz package receipt.
3 PACKAGE="ecore"
4 VERSION="1.7.6"
5 CATEGORY="base-system"
6 SHORT_DESC="Enlightenment's core event abstraction layer 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 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 --with-internal-maximum-log-level=2 \
25 --disable-ecore-evas-wayland-shm \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 }