Overview
Comment: | Moved tcllib to simplified build system |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 5963c4d770c469e4594a8c39163cd2b5126fc686 |
User & Date: | rkeene on 2016-09-06 04:41:38 |
Other Links: | manifest | tags |
Context
2016-09-06
| ||
04:43 | Upgraded to latest version of tcllib check-in: 5ccf6eac7a user: rkeene tags: trunk | |
04:41 | Moved tcllib to simplified build system check-in: 5963c4d770 user: rkeene tags: trunk | |
04:39 | Moved tcc4tcl to simplified build system check-in: 531fec5815 user: rkeene tags: trunk | |
Changes
Modified tcllib/build.sh from [2b5cf345b1] to [3eb69ea640].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
#! /usr/bin/env bash TCLLIB_VERS='1.16' SRC="src/tcllib-${TCLLIB_VERS}.tar.bz2" SRCURL="http://sourceforge.net/projects/tcllib/files/tcllib/${TCLLIB_VERS}/tcllib-${TCLLIB_VERS}.tar.bz2" SRCHASH='033334306d3ffc499c8830d393bf7528227e49c68077b3e9247c4171b15be012' BUILDDIR="$(pwd)/build/Tcllib-${TCLLIB_VERS}" OUTDIR="$(pwd)/out" INSTDIR="$(pwd)/inst" PATCHDIR="$(pwd)/patches" export TCLLIB_VERS SRC SRCURL BUILDDIR OUTDIR INSTDIR PATCHDIR rm -rf 'build' 'out' 'inst' mkdir 'build' 'out' 'inst' || exit 1 if [ ! -f "${SRC}" ]; then mkdir 'src' >/dev/null 2>/dev/null if [ ! -d 'buildsrc' ]; then download "${SRCURL}" "${SRC}" "${SRCHASH}" || exit 1 fi fi ( cd 'build' || exit 1 if [ ! -d '../buildsrc' ]; then bzip2 -dc "../${SRC}" | tar -xf - else cp -rp ../buildsrc/* './' fi cd "${BUILDDIR}" || exit 1 ./configure --prefix="${INSTDIR}" || exit 1 make || exit 1 make install || exit 1 cp -rp "${INSTDIR}/lib" "${OUTDIR}" ) || exit 1 |
> > | < | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
1 2 3 4 5 6 7 |
#! /usr/bin/env bash # BuildCompatible: KitCreator version='1.16' url="http://sourceforge.net/projects/tcllib/files/tcllib/${version}/tcllib-${version}.tar.bz2" sha256='033334306d3ffc499c8830d393bf7528227e49c68077b3e9247c4171b15be012' |