wok view evas/receipt @ rev 2294

Up: slitaz-tools (2.9) - New boxes and tools + improvement)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 22 22:39:20 2009 +0100 (2009-02-22)
parents c1ff74d9b6f4
children ecb146e32c08
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 BUILD_DEPENDS="xorg-libX11-dev"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.enlightenment.org/"
11 WGET_URL="http://download.enlightenment.org/snapshots/2008-09-25/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 cp -a $_pkg/usr/lib/evas $fs/usr/lib
33 # Clean.
34 rm -rf $fs/usr/lib/evas/modules/*/*/linux-gnu-i486/*.*a
35 }