36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
+
+
+
+
+
+
|
mkdir -p "${INSTDIR}" >/dev/null 2>/dev/null
mkdir build
cd build/ || exit 1
gzip -dc "../${SRC}" | tar -xf -
cd "${BUILDDIR}" || exit 1
## Apply simple fix-ups
### Remove references to "dtplite", we don't need it.
sed 's@dtplite@true@g' Makefile.in > Makefile.in.new
cat Makefile.in.new > Makefile.in
rm -f Makefile.in.new
INSTDIR="${INSTROOT}/__TMP__/${PLATFORM}"
bash ./configure --enable-shared --with-tcl="${TCLCONFIGDIR}" --with-tk="${tkdir}" --prefix="${INSTDIR}" --libdir="${INSTDIR}" --bindir="${INSTDIR}" ${CONFIGUREEXTRA}
${MAKE:-make} || exit 1
|