wok-next view scons2/receipt @ rev 21017

Some maintenance
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 16 16:46:05 2018 +0300 (2018-10-16)
parents cd7906120828
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scons2"
4 VERSION="2.5.1"
5 CATEGORY="development"
6 SHORT_DESC="SCons (2.x) is an Open Source software construction tool"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://scons.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/scons.html"
11 REPOLOGY="scons"
13 TARBALL="scons-$VERSION.tar.gz"
14 WGET_URL="$SF_MIRROR/scons/$TARBALL"
16 BUILD_DEPENDS="python-dev"
18 compile_rules() {
19 python setup.py install \
20 --prefix=/usr \
21 --standard-lib \
22 --optimize=1 \
23 --install-data=/usr/share \
24 --root=$install || return 1
26 find $install -perm 775 -exec chmod 755 '{}' \;
27 }
29 genpkg_rules() {
30 copy @std
31 DEPENDS="python"
32 }