wok-next rev 20738

Up scons (3.0.1); add scons2 (2.5.1)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 29 21:13:51 2018 +0300 (2018-05-29)
parents 7a27d976b7a5
children 33df80a31584
files scons/receipt scons2/receipt
line diff
     1.1 --- a/scons/receipt	Tue May 29 20:37:22 2018 +0300
     1.2 +++ b/scons/receipt	Tue May 29 21:13:51 2018 +0300
     1.3 @@ -1,12 +1,12 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="scons"
     1.7 -VERSION="3.0.0"
     1.8 +VERSION="3.0.1"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="SCons is an Open Source software construction tool"
    1.11  MAINTAINER="chadi.elahmad@gmail.com"
    1.12  LICENSE="MIT"
    1.13 -WEB_SITE="http://www.scons.org/"
    1.14 +WEB_SITE="https://scons.org/"
    1.15  LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/scons.html"
    1.16  
    1.17  TARBALL="$PACKAGE-$VERSION.tar.gz"
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/scons2/receipt	Tue May 29 21:13:51 2018 +0300
     2.3 @@ -0,0 +1,31 @@
     2.4 +# SliTaz package receipt v2.
     2.5 +
     2.6 +PACKAGE="scons2"
     2.7 +VERSION="2.5.1"
     2.8 +CATEGORY="development"
     2.9 +SHORT_DESC="SCons (2.x) is an Open Source software construction tool"
    2.10 +MAINTAINER="al.bobylev@gmail.com"
    2.11 +LICENSE="MIT"
    2.12 +WEB_SITE="https://scons.org/"
    2.13 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/scons.html"
    2.14 +
    2.15 +TARBALL="scons-$VERSION.tar.gz"
    2.16 +WGET_URL="$SF_MIRROR/scons/$TARBALL"
    2.17 +
    2.18 +BUILD_DEPENDS="python-dev"
    2.19 +
    2.20 +compile_rules() {
    2.21 +	python setup.py install \
    2.22 +		--prefix=/usr \
    2.23 +		--standard-lib \
    2.24 +		--optimize=1 \
    2.25 +		--install-data=/usr/share \
    2.26 +		--root=$install || return 1
    2.27 +
    2.28 +	find $install -perm 775 -exec chmod 755 '{}' \;
    2.29 +}
    2.30 +
    2.31 +genpkg_rules() {
    2.32 +	copy @std
    2.33 +	DEPENDS="python"
    2.34 +}