wok-next annotate scons/receipt @ rev 19088
cross/arm: fix build for ell busybox flex ninvaders
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Apr 30 18:20:33 2016 +0200 (2016-04-30) |
parents | e72ddaac0efb |
children | a8e75e9bae6c |
rev | line source |
---|---|
pascal@1136 | 1 # SliTaz package receipt. |
pascal@1136 | 2 |
pascal@1136 | 3 PACKAGE="scons" |
devl547@17614 | 4 VERSION="2.3.4" |
pascal@1136 | 5 CATEGORY="development" |
pascal@1136 | 6 SHORT_DESC="SCons is an Open Source software construction tool." |
pascal@1136 | 7 MAINTAINER="chadi.elahmad@gmail.com" |
pascal@15593 | 8 LICENSE="MIT" |
pascal@1136 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@1136 | 10 WEB_SITE="http://www.scons.org/" |
pankso@4187 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@15593 | 12 |
pascal@15593 | 13 DEPENDS="python" |
pascal@15593 | 14 BUILD_DEPENDS="python python-dev" |
pascal@1136 | 15 |
pascal@1136 | 16 # Rules to configure and make the package. |
pascal@1136 | 17 compile_rules() |
pascal@1136 | 18 { |
slaxemulator@10973 | 19 mkdir -p $DESTDIR/usr |
pascal@1136 | 20 python setup.py install \ |
pascal@1136 | 21 --standard-lib \ |
slaxemulator@10973 | 22 --prefix=$DESTDIR/usr |
pascal@1136 | 23 } |
pascal@1136 | 24 |
pascal@1136 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1136 | 26 genpkg_rules() |
pascal@1136 | 27 { |
pankso@4187 | 28 mkdir -p $fs/usr |
pascal@15593 | 29 cp -a $install/usr/bin $fs/usr |
pascal@15593 | 30 cp -a $install/usr/lib $fs/usr |
pascal@1136 | 31 } |