wok view evas/receipt @ rev 550

Up: osmo (0.2.0)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 20:17:59 2008 +0200 (2008-04-12)
parents 5d91cb5a0c63
children c1ff74d9b6f4
line source
1 # SliTaz package receipt.
3 PACKAGE="evas"
4 VERSION="0.9.9.042"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 libs."
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/snapshots/2008-01-25/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 cp -a $_pkg/usr/lib/evas $fs/usr/lib
29 # Clean and strip.
30 rm -rf $fs/usr/lib/evas/modules/*/*/linux-gnu-i486/*.*a
31 strip --strip-unneeded $fs/usr/lib/evas/modules/*/*/linux-gnu-i486/*
32 strip --strip-unneeded $fs/usr/lib/* 2>/dev/null
33 }