wok annotate 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
rev   line source
domcox@14433 1 # SliTaz package receipt.
domcox@14433 2
domcox@14433 3 PACKAGE="python-elementary"
domcox@14694 4 VERSION="1.7.0-3"
domcox@14433 5 CATEGORY="base-system"
domcox@14694 6 SHORT_DESC="Python bindings for Elementary"
domcox@14433 7 MAINTAINER="domcox@slitaz.org"
domcox@14433 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
domcox@14433 9 WEB_SITE="http://www.enlightenment.org/"
domcox@14694 10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL"
domcox@14694 11 TAGS="e enlightenment python"
domcox@14433 12
domcox@14433 13 DEPENDS="elementary python-evas"
domcox@14433 14 BUILD_DEPENDS="elementary-dev python-evas-dev python-cython
domcox@14433 15 autoconf automake git subversion libtool"
domcox@14433 16
domcox@14433 17 # Rules to configure and make the package.
domcox@14433 18 compile_rules()
domcox@14433 19 {
domcox@14433 20 ./autogen.sh &&
domcox@14433 21 ./configure --prefix=/usr &&
domcox@14694 22 make $MAKEFLAGS all && make install
domcox@14433 23 }
domcox@14433 24
domcox@14433 25 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@14433 26 genpkg_rules()
domcox@14433 27 {
domcox@14433 28 mkdir -p $fs/usr/lib
domcox@14433 29 cp -a $install/usr/lib/python2.7 $fs/usr/lib
domcox@14433 30 }