wok-next view scons/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="scons"
4 VERSION="3.0.1"
5 CATEGORY="development"
6 SHORT_DESC="Open Source software construction tool"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://scons.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/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 -B setup.py install \
19 --prefix=/usr \
20 --standard-lib \
21 --install-data=/usr/share \
22 --root=$install || return 1
24 find $install -perm 775 -exec chmod 755 '{}' \;
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="python"
30 }