wok view scons/receipt @ rev 1189

libsdl-*-dev: WANTED with correct name
author Christophe Lincoln <pankso@slitaz.org>
date Mon Aug 04 16:31:19 2008 +0200 (2008-08-04)
parents
children 571365252927
line source
1 # SliTaz package receipt.
3 PACKAGE="scons"
4 VERSION="0.98.5"
5 CATEGORY="development"
6 SHORT_DESC="SCons is an Open Source software construction tool."
7 MAINTAINER="chadi.elahmad@gmail.com"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.scons.org/"
11 WGET_URL="http://garr.dl.sourceforge.net/sourceforge/scons/$TARBALL"
13 DEPENDS="python "
14 BUILD_DEPENDS="python python-dev "
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir -p $src/_pkg/usr
20 cd $src
21 python setup.py install \
22 --install-man \
23 --standard-lib \
24 --prefix=$src/_pkg/usr
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/
31 cp -a $_pkg/usr/* $fs/usr
32 }