Index: tcllib/build.sh ================================================================== --- tcllib/build.sh +++ tcllib/build.sh @@ -1,43 +1,7 @@ #! /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 - +# BuildCompatible: KitCreator + +version='1.16' +url="http://sourceforge.net/projects/tcllib/files/tcllib/${version}/tcllib-${version}.tar.bz2" +sha256='033334306d3ffc499c8830d393bf7528227e49c68077b3e9247c4171b15be012'