Differences From Artifact [faf1ba23d7]:
- Executable file
itcl/build.sh
— part of check-in
[023de4a116]
at
2010-09-26 04:39:15
on branch trunk
— Updated to check for 'buildsrc' directory before untarring. If found it is used. (Untested)
Updated to download sources to a temporary file and only rename on success (user: rkeene, size: 1875) [annotate] [blame] [check-ins using]
To Artifact [7b29c2b2f9]:
- Executable file itcl/build.sh — part of check-in [d2e00f0f73] at 2010-09-26 04:41:24 on branch trunk — Added support for specifying a STRIP environment variable (user: rkeene, size: 1887) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
71 72 73 74 75 76 77 |
${MAKE:-make} || exit 1
${MAKE:-make} install
mkdir "${OUTDIR}/lib" || exit 1
cp -r "${INSTDIR}/lib"/itcl*/ "${OUTDIR}/lib/"
| | | 71 72 73 74 75 76 77 78 79 80 81 82 83 |
${MAKE:-make} || exit 1
${MAKE:-make} install
mkdir "${OUTDIR}/lib" || exit 1
cp -r "${INSTDIR}/lib"/itcl*/ "${OUTDIR}/lib/"
"${STRIP:-strip}" -g "${OUTDIR}"/lib/itcl*/*.so >/dev/null 2>/dev/null
exit 0
) || exit 1
exit 0
|