wok-next view scons/receipt @ rev 20845

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
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 }