wok-next view scons2/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scons2"
4 VERSION="2.5.1"
5 CATEGORY="development"
6 SHORT_DESC="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 -B setup.py install \
20 --prefix=/usr \
21 --standard-lib \
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 }