wok view etk/receipt @ rev 3975

Add python-pyrex (Language for Writing Python Extension Modules)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Aug 27 13:31:03 2009 +0200 (2009-08-27)
parents fc471c5f5a90
children
line source
1 # SliTaz package receipt.
3 PACKAGE="etk"
4 VERSION="40505"
5 CATEGORY="x-window"
6 SHORT_DESC="E17 Toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-libX11 ecore evas edje embryo"
9 BUILD_DEPENDS="xorg-libX11-dev ecore-dev evas-dev subversion cvs"
10 WEB_SITE="http://www.enlightenment.org/"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 [ -d "$PACKAGE-$VERSION" ] && rm -rf $PACKAGE-$VERSION
16 svn co http://svn.enlightenment.org/svn/e/trunk/$PACKAGE \
17 -r $VERSION $PACKAGE-$VERSION
18 cd $src
19 ./autogen.sh \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/etk/engines
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share $fs/usr
33 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
34 cp -a $_pkg/usr/lib/etk/engines/*.so* $fs/usr/lib/etk/engines
35 }