Differences From Artifact [f495d0968a]:
- Executable file
kitsh/build.sh
— part of check-in
[2203d001cd]
at
2010-09-26 04:39:48
on branch trunk
— Enabled Mk4vfs compression
Added appropriate licensing information.
Updated README (user: rkeene, size: 1875) [annotate] [blame] [check-ins using]
To Artifact [73b3561dba]:
- Executable file
kitsh/build.sh
— part of check-in
[e95acf08f0]
at
2010-09-26 04:40:48
on branch trunk
— Added zlib package
Added support for specifying --with-zlib to kitsh if zlib built fine (user: rkeene, size: 2330) [annotate] [blame] [check-ins using]
︙ | |||
29 30 31 32 33 34 35 36 37 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | + + + + + + + + + + - + + + + + + | ( cp -r 'buildsrc' 'build' cd "${BUILDDIR}" || exit 1 # Cleanup, just incase the incoming directory was not pre-cleaned ${MAKE:-make} distclean >/dev/null 2>/dev/null # Figure out if zlib compiled ZLIBDIR=$(cd "${OTHERPKGSDIR}/zlib/inst"; pwd) export ZLIBDIR if [ ! -f "${ZLIBDIR}/lib/libz.a" ]; then unset ZLIBDIR fi # Compile Kitsh if [ -z "${ZLIBDIR}" ]; then echo "./configure --with-tcl=\"${TCLCONFIGDIR}\" ${CONFIGUREEXTRA}" |
︙ |