wok-next view scons/receipt @ rev 20678

Up clisp (2.50)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 15 02:59:03 2018 +0300 (2018-05-15)
parents 0e7893ac206d
children 2cfb8a544937
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scons"
4 VERSION="3.0.0"
5 CATEGORY="development"
6 SHORT_DESC="SCons is an Open Source software construction tool"
7 MAINTAINER="chadi.elahmad@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="http://www.scons.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/stable/general/scons.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="python-dev"
17 compile_rules() {
18 python setup.py install \
19 --prefix=/usr \
20 --standard-lib \
21 --optimize=1 \
22 --install-data=/usr/share \
23 --root=$install || return 1
25 find $install -perm 775 -exec chmod 755 '{}' \;
26 }
28 genpkg_rules() {
29 copy @std
30 DEPENDS="python"
31 }