wok annotate python-edje/receipt @ rev 15953

arm: fix file cross compilation and add testsuite
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 23 15:49:23 2014 +0100 (2014-02-23)
parents e1eb3761bd48
children 16df76e1fc6a
rev   line source
domcox@14416 1 # SliTaz package receipt.
domcox@14416 2
domcox@14416 3 PACKAGE="python-edje"
pascal@14706 4 VERSION="1.7.0"
domcox@14416 5 CATEGORY="base-system"
domcox@14692 6 SHORT_DESC="Python bindings for Edje"
domcox@14416 7 MAINTAINER="domcox@slitaz.org"
pascal@14995 8 LICENSE="LGPL2.1"
domcox@14416 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
domcox@14416 10 WEB_SITE="http://www.enlightenment.org/"
pascal@14706 11 WGET_URL="http://download.enlightenment.org/releases/BINDINGS/python/$TARBALL"
domcox@14692 12 TAGS="e enlightenment python"
domcox@14416 13
domcox@14416 14 DEPENDS="edje python-evas libxml2"
domcox@14416 15 BUILD_DEPENDS="edje-dev python-evas-dev
domcox@14416 16 python-cython autoconf automake git subversion libtool libxml2-dev"
domcox@14416 17
domcox@14416 18 # Rules to configure and make the package.
domcox@14416 19 compile_rules()
domcox@14416 20 {
domcox@14416 21 ./autogen.sh &&
domcox@14416 22 ./configure --prefix=/usr &&
domcox@14692 23 make $MAKEFLAGS all && make install
domcox@14416 24 }
domcox@14416 25
domcox@14416 26 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@14416 27 genpkg_rules()
domcox@14416 28 {
domcox@14416 29 mkdir -p $fs/usr/lib
domcox@14416 30 cp -a $install/usr/lib/python2.7 $fs/usr/lib
domcox@14416 31 }