wok view eina/receipt @ rev 14400

eio: update deps+bdeps
author Dominique Corbex <domcox@slitaz.org>
date Tue Apr 23 18:24:46 2013 +0200 (2013-04-23)
parents 0941341ce316
children fdd740b3c8ab
line source
1 # SliTaz package receipt.
3 PACKAGE="eina"
4 VERSION="1.7.6"
5 CATEGORY="base-system"
6 SHORT_DESC="Enlightenment's data types library (List, hash, etc) in C."
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=""
14 BUILD_DEPENDS=""
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 --enable-magic-debug \
24 --enable-safety-checks \
25 --enable-amalgamation \
26 --with-internal-maximum-log-level=2 \
27 $CONFIGURE_ARGS && \
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }