wok view python-elementary/receipt @ rev 14694

python-elementary: Up to 1.7.0-3
author Dominique Corbex <domcox@slitaz.org>
date Thu Jun 06 22:09:33 2013 +0200 (2013-06-06)
parents 1e7acdb2bfc3
children e1eb3761bd48
line source
1 # SliTaz package receipt.
3 PACKAGE="python-elementary"
4 VERSION="1.7.0-3"
5 CATEGORY="base-system"
6 SHORT_DESC="Python bindings for Elementary"
7 MAINTAINER="domcox@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.enlightenment.org/"
10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
11 TAGS="e enlightenment python"
13 DEPENDS="elementary python-evas"
14 BUILD_DEPENDS="elementary-dev python-evas-dev python-cython
15 autoconf automake git subversion libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh &&
21 ./configure --prefix=/usr &&
22 make $MAKEFLAGS all && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/python2.7 $fs/usr/lib
30 }