Differences From Artifact [3a852f9bb4]:
- Executable file server/buildpkgs/tls/build.sh — part of check-in [d4584bf4ae] at 2010-02-09 14:39:28 on branch trunk — Updated to attempt to determine OS from magic of built Tcl Updated to pass arguments from the command line to subsequent "build.sh" scripts Fixed issue on "dict" where "out" was being cleaned up (user: rkeene, size: 1410) [annotate] [blame] [check-ins using]
To Artifact [780cdf7280]:
- Executable file server/buildpkgs/tls/build.sh — part of check-in [c0fd75de7e] at 2010-02-11 13:49:41 on branch trunk — Added the ability to specify a PLATFORM (defaults to auto-detect) Disabled building of binary packages when PLATFORM is "tcl" Added building Tcllib if PLATFORM is "tcl" (user: rkeene, size: 1470) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | + + + + + + | #! /bin/bash if [ ! -x "../platform" ]; then echo "No platform script found, aborting." >&2 exit 1 fi if [ "${PLATFORM}" = "tcl" ]; then rm -rf out exit 0 fi VERS=1.6 SRC="src/tls${VERS}-src.tar.gz" SRCURL="http://sourceforge.net/projects/tls/files/tls/${VERS}/tls${VERS}-src.tar.gz/download" BUILDDIR="tls${VERS}" WORKDIR="${TMPDIR:-/tmp}/tls-$$${RANDOM}${RANDOM}${RANDOM}" PLATDIR="$(pwd)/out/${PLATFORM}" |
︙ |