wok view ecore/receipt @ rev 2939

Up: libgpg-error-* (1.7)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri May 08 00:11:57 2009 +0200 (2009-05-08)
parents c2e62b65e0fa
children 46b53ce42491
line source
1 # SliTaz package receipt.
3 PACKAGE="ecore"
4 VERSION="0.9.9.060"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 core libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="eet evas libcurl openssl xorg-libX11 xorg-libXau xorg-libXcomposite \
9 xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes xorg-libXinerama \
10 xorg-libXrandr xorg-libXrender xorg-libXdamage xorg-libXtst"
11 BUILD_DEPENDS="xorg-dev eet-dev evas-dev xorg-libXtst-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WEB_SITE="http://www.enlightenment.org/"
14 WGET_URL="http://download.enlightenment.org/snapshots/2009-04-22/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # Edje dont cook if ecore link with libiconv.
20 [ -d /var/lib/tazpkg/installed/libiconv-dev ] && tazpkg remove libiconv-dev
21 cd $src
22 ./configure \
23 --enable-ecore-config \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
38 }