summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-08-20 17:00:00 +0000
committerSteven Knight <knight@baldmt.com>2003-08-20 17:00:00 +0000
commitb8ad44992b38ccbe31ab15d1f60d41b9d9e67c7c (patch)
treed86afbdaab7b2d22b7c4c04a7b410a0f97bc8791 /debian/control
parent1c0a7d503532ad8b1129192872d15a72c441ad28 (diff)
downloadscons-b8ad44992b38ccbe31ab15d1f60d41b9d9e67c7c.tar.gz
Build a Debian package, too.
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control20
1 files changed, 15 insertions, 5 deletions
diff --git a/debian/control b/debian/control
index b5ecaff3..7e0d2a5f 100644
--- a/debian/control
+++ b/debian/control
@@ -2,12 +2,22 @@ Source: scons
Section: devel
Priority: optional
Maintainer: Moshe Zadka <moshez@debian.org>
-Build-Depends-Indep: debhelper (>> 2.0.0), python2.1
-Standards-Version: 3.2.1
+Build-Depends-Indep: debhelper (>> 2.0.0), python2.2-dev
+Standards-Version: 3.5.6
Package: scons
Architecture: all
-Depends: python2.1
+Depends: python2.2
Description: A replacement for Make
- Scons is able to build files from other files, based on the
- dependency DAG.
+ 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.