wok-next view scons/receipt @ rev 20780
GnuPG update: 2.1.21 (2017 May) -> 2.2.8 (CVE-2018-12020) -> GnuPG 2.2.x is the current stable branch of GnuPG
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sat Jun 09 05:44:49 2018 +0000 (2018-06-09) |
parents | 1ff723a6455b |
children | f48456621a9d |
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scons"
4 VERSION="3.0.1"
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="https://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 }