summaryrefslogtreecommitdiff
path: root/debian/control
blob: d0a61fa8aa96fb4e2a86eabf8d16f2ec06f98c0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Source: scons
Section: devel
Priority: optional
Maintainer: Moshe Zadka <moshez@debian.org>
Build-Depends-Indep: debhelper (>> 5.0.0), python-dev (>> 2.7)
Standards-Version: 3.5.6

Package: scons
Architecture: all
Depends: python (>> 2.7)
Description: A replacement for Make
 SCons is an Open Source software construction tool--that is, a build
 tool; an improved substitute for the classic Make utility; a better
 way to build software.  SCons is based on the design which won the
 Software Carpentry build tool design competition in August 2000.  SCons
 "configuration files" are Python scripts that call an API to establish
 dependencies and specify how targets are built.  SCons maintains a global
 view of all dependencies in a tree, and can scan source (or other) files
 for implicit dependencies, such as files specified on #include lines.
 SCons uses MD5 signatures to rebuild only when the contents of a file
 have really changed, not just when the timestamp has been touched.
 SCons supports side-by-side variant builds, and is easily extended with
 user-defined Builder and/or Scanner objects.