44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
cd "${BUILDDIR}" || exit 1
for patch in "${PATCHDIR}/all"/metakit-${MK4VERS}-*.diff "${PATCHDIR}/${TCL_VERSION}"/metakit-${MK4VERS}-*.diff; do
if [ ! -f "${patch}" ]; then
continue
fi
echo "Applying: ${patch}"
patch -p1 < "${patch}"
done
cd "${BUILDDIR}/unix" || exit 1
# Build static libraries for linking against Tclkit
./configure --disable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA}
"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1
|
|
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
cd "${BUILDDIR}" || exit 1
for patch in "${PATCHDIR}/all"/metakit-${MK4VERS}-*.diff "${PATCHDIR}/${TCL_VERSION}"/metakit-${MK4VERS}-*.diff; do
if [ ! -f "${patch}" ]; then
continue
fi
echo "Applying: ${patch}"
${PATCH:-patch} -p1 < "${patch}"
done
cd "${BUILDDIR}/unix" || exit 1
# Build static libraries for linking against Tclkit
./configure --disable-shared --prefix="${INSTDIR}" --exec-prefix="${INSTDIR}" --with-tcl="${TCLCONFIGDIR}/../generic" ${CONFIGUREEXTRA}
"${MAKE:-make}" tcllibdir="${INSTDIR}/lib" || exit 1
|