wok-current annotate python-ecore/receipt @ rev 16340
ARM: fix scratch cross compilation
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Apr 12 14:40:51 2014 +0200 (2014-04-12) |
parents | 34a30849a6c1 |
children | 16df76e1fc6a |
rev | line source |
---|---|
domcox@14410 | 1 # SliTaz package receipt. |
domcox@14410 | 2 |
domcox@14410 | 3 PACKAGE="python-ecore" |
domcox@14410 | 4 VERSION="1.7.0" |
domcox@14410 | 5 CATEGORY="base-system" |
domcox@14410 | 6 SHORT_DESC="Python bindings for ecore" |
domcox@14410 | 7 MAINTAINER="domcox@slitaz.org" |
pascal@14995 | 8 LICENSE="LGPL2.1" |
domcox@14410 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
domcox@14410 | 10 WEB_SITE="http://www.enlightenment.org/" |
domcox@14410 | 11 WGET_URL="git|git://git.enlightenment.org/legacy/bindings/python/$PACKAGE.git" |
domcox@14410 | 12 TAGS="e enlightenment efl python" |
domcox@14410 | 13 |
domcox@14410 | 14 DEPENDS="ecore" |
domcox@14410 | 15 BUILD_DEPENDS="ecore-dev python-dev python-cython autoconf automake |
domcox@14410 | 16 git subversion libtool" |
domcox@14410 | 17 |
domcox@14410 | 18 # Rules to configure and make the package. |
domcox@14410 | 19 compile_rules() |
domcox@14410 | 20 { |
domcox@14410 | 21 ./autogen.sh && |
domcox@14410 | 22 ./configure --prefix=/usr && |
domcox@14410 | 23 make all && make install |
domcox@14410 | 24 } |
domcox@14410 | 25 |
domcox@14410 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@14410 | 27 genpkg_rules() |
domcox@14410 | 28 { |
domcox@14410 | 29 mkdir -p $fs/usr/lib |
domcox@14410 | 30 cp -a $install/usr/lib/python2.7 $fs/usr/lib |
domcox@14410 | 31 } |