16
edits
Kevin Cowtan (talk | contribs) |
Kevin Cowtan (talk | contribs) |
||
Line 29: | Line 29: | ||
* [http://www.ysbl.york.ac.uk/~emsley/build-logs/build-it GTK1] - the old user interface. This script builds coot and all its dependencies. | * [http://www.ysbl.york.ac.uk/~emsley/build-logs/build-it GTK1] - the old user interface. This script builds coot and all its dependencies. | ||
* [http://www.ysbl.york.ac.uk/~emsley/build-logs/build-it-gtk2-simple GTK2] - the new user interface. This script builds coot and most of the dependencies, excluding GTK2. | * [http://www.ysbl.york.ac.uk/~emsley/build-logs/build-it-gtk2-simple GTK2] - the new user interface. This script builds coot and most of the dependencies, excluding GTK2. | ||
To build Coot, all you should need to do is edit a few settings in the top of the build script, or alternatively specify those settings as environment variables. For example, the following sequence of instructions will build the latest pre-release of the GTK 2 version on many machines: | |||
wget http://www.ysbl.york.ac.uk/~emsley/build-logs/build-it-gtk2-simple | |||
export AUTOBUILD_INSTALLED=${HOME}/autobuild/coot | |||
export AUTOBUILD_BUILD=${HOME}/autobuild/ | |||
export LOGS=$AUTOBUILD_BUILD/logs | |||
export NIGHTLY_DEST_DIR=$AUTOBUILD_BUILD | |||
export STABLE_DEST_DIR=$AUTOBUILD_BUILD | |||
export build_coot_prerelease=1 | |||
export run_tests=true | |||
bash build-it-gtk2-simple python > build.log | |||
edits