wok-next view scons/receipt @ rev 21087

Updates...
Revert names: libsdl -> sdl, libsmpeg -> smpeg, libtdb -> tdb
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Dec 28 05:11:49 2018 +0200 (2018-12-28)
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 }