wok-current diff scons/receipt @ rev 3209
added opencpn a Concise chart/plotter Navigator
author | Allan Pinto <allan316@gmail.com> |
---|---|
date | Thu May 28 12:22:52 2009 +0000 (2009-05-28) |
parents | |
children | 571365252927 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/scons/receipt Thu May 28 12:22:52 2009 +0000 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="scons" 1.7 +VERSION="0.98.5" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="SCons is an Open Source software construction tool." 1.10 +MAINTAINER="chadi.elahmad@gmail.com" 1.11 + 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://www.scons.org/" 1.14 +WGET_URL="http://garr.dl.sourceforge.net/sourceforge/scons/$TARBALL" 1.15 + 1.16 +DEPENDS="python " 1.17 +BUILD_DEPENDS="python python-dev " 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + mkdir -p $src/_pkg/usr 1.23 + cd $src 1.24 + python setup.py install \ 1.25 + --install-man \ 1.26 + --standard-lib \ 1.27 + --prefix=$src/_pkg/usr 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr/ 1.34 + cp -a $_pkg/usr/* $fs/usr 1.35 +} 1.36 +