Differences From Artifact [c9cd8f667d]:
- Executable file server/buildpkgs/sqlite3/build.sh — part of check-in [bd843fe232] at 2010-02-09 15:58:37 on branch trunk — Fixed building sqlite3 on non-GNU platforms (user: rkeene, size: 1124) [annotate] [blame] [check-ins using]
To Artifact [ca2074f1e1]:
- Executable file server/buildpkgs/sqlite3/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: 1184) [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=3.6.22 VERSUNDER="$(echo "${VERS}" | sed 's@\.@_@g')" SRC="src/sqlite-${VERSUNDER}.tar.gz" SRCURL="http://www.sqlite.org/sqlite-${VERSUNDER}-tea.tar.gz" BUILDDIR="sqlite-${VERSUNDER}-tea" WORKDIR="${TMPDIR:-/tmp}/sqlite-$$${RANDOM}${RANDOM}${RANDOM}" |
︙ |