| OLD | NEW |
| 1 Name: SCons |
| 2 URL: http://www.scons.org |
| 3 License File: scons-LICENSE |
| 4 |
| 1 This is a copy of SCons, a Python-based software build tool (that is, | 5 This is a copy of SCons, a Python-based software build tool (that is, |
| 2 replacement for Make) that we use for cross-platform builds. | 6 replacement for Make) that we use for cross-platform builds. |
| 3 | 7 |
| 4 Current version: 1.2.0.d20090113 | 8 Current version: 1.2.0.d20090113 |
| 5 | 9 |
| 6 Originally obtained from: | |
| 7 | |
| 8 http://www.scons.org/downloads.php | |
| 9 | |
| 10 SCons ships under an MIT license. See the scons-LICENSE file in | |
| 11 this directory for specifics. | |
| 12 | |
| 13 We check in the contents of the scons-local-* package(s) provided | 10 We check in the contents of the scons-local-* package(s) provided |
| 14 by the SCons Project. | 11 by the SCons Project. |
| 15 | 12 |
| 16 Before checking in, copy the contents of the version-specific | 13 Before checking in, copy the contents of the version-specific |
| 17 "scons-local-{VERSION}" subdirectory to the "scons-local" subdirectory. | 14 "scons-local-{VERSION}" subdirectory to the "scons-local" subdirectory. |
| 18 We do this so we can use Subversion to diff and revert imported versions, | 15 We do this so we can use Subversion to diff and revert imported versions, |
| 19 and to make it easier to propagate any local modifications we might make | 16 and to make it easier to propagate any local modifications we might make |
| 20 to any new versions we check in. | 17 to any new versions we check in. |
| 21 | 18 |
| 22 To import a new version of SCons: | 19 To import a new version of SCons: |
| 23 | 20 |
| 24 - Visit http://www.scons.org/downloads.php | 21 - Visit http://www.scons.org/downloads.php |
| 25 | 22 |
| 26 - Download the latest scons-local package. | 23 - Download the latest scons-local package. |
| 27 | 24 |
| 28 - Unpack in the current directory: | 25 - Unpack in the current directory: |
| 29 | 26 |
| 30 $ tar zxf scons-local-{VERSION}.tar.gz | 27 $ tar zxf scons-local-{VERSION}.tar.gz |
| 31 | 28 |
| 32 - Copy the contents of the version-specific directory to scons-local: | 29 - Copy the contents of the version-specific directory to scons-local: |
| 33 | 30 |
| 34 $ cp -rf scons-local-{VERSION}/* scons-local | 31 $ cp -rf scons-local-{VERSION}/* scons-local |
| 35 $ rm -rf scons-local-{VERSION} | 32 $ rm -rf scons-local-{VERSION} |
| 36 | 33 |
| 37 - Update this README.chromium file to reflect the new version number. | 34 - Update this README.chromium file to reflect the new version number. |
| 38 | 35 |
| 39 - Check in (after appropriate testing, of course). | 36 - Check in (after appropriate testing, of course). |
| OLD | NEW |