wok view evas/receipt @ rev 1630

Up tazpkg (2.4.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 23 20:29:40 2008 +0000 (2008-10-23)
parents cf22fee17710
children 7e35e02ae6d2
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 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-01-25/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 cp -a $_pkg/usr/lib/evas $fs/usr/lib
30 # Clean and strip.
31 rm -rf $fs/usr/lib/evas/modules/*/*/linux-gnu-i486/*.*a
32 strip --strip-unneeded $fs/usr/lib/evas/modules/*/*/linux-gnu-i486/*
33 strip --strip-unneeded $fs/usr/lib/* 2>/dev/null
34 }