4593383 [rkeene@sledge /home/rkeene/projects/build]$ cat scons.txt
# COMPILE REQUIREMENT: python
# RUNTIME REQUIREMENT: python

# SHORT DESC: Software Construction Tool
# LONG DESC: SCons is a software construction tool (build tool substitute for Make) implemented in Python. It features a modular build engine that can be embedded in other software. SCons configuration files are Python scripts that call the build engine API. It can scan files to detect dependencies automatically and maintain a global view of all dependencies in a build tree, and uses MD5 signatures to detect changed file contents reliably. Timestamps can be used if you prefer. SCons also supports parallel builds and is easily extensible through user-defined builder and scanner objects.


if [ -f src/script/scons.py ]; then
	SCONS_LIB_DIR=`pwd`/src/engine
	export SCONS_LIB_DIR

	python src/script/scons.py build/scons || exit 1
	cd build/scons || exit 1
fi

python setup.py install --standard-lib || exit 1
4593384 [rkeene@sledge /home/rkeene/projects/build]$

Click here to go back to the directory listing.
Click here to download this file.
last modified: 2012-05-07 00:52:06