wok view evas/receipt @ rev 2510

qemu: update depends
author Julien Rabier <taziden@slitaz.org>
date Mon Mar 16 16:44:07 2009 +0100 (2009-03-16)
parents 7e35e02ae6d2
children c2e62b65e0fa
line source
1 # SliTaz package receipt.
3 PACKAGE="evas"
4 VERSION="0.9.9.050"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="expat fontconfig freetype jpeg libpng tiff xorg-libX11 \
9 xorg-libXau xorg-libXdmcp xorg-libXext xorg-libXrender"
10 BUILD_DEPENDS="xorg-libX11-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.enlightenment.org/"
13 WGET_URL="http://download.enlightenment.org/snapshots/2008-09-25/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/evas $fs/usr/lib
35 # Clean.
36 rm -rf $fs/usr/lib/evas/modules/*/*/linux-gnu-i486/*.*a
37 }