diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-06 14:09:59 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-06 14:09:59 -0500 |
commit | af28b78b8e659f995b39a5dde2ce2cef0da9fbe0 (patch) | |
tree | a80d4cfef7713f7aa26137c0da553358af4cd7b2 /chapter8/tcl.sh | |
parent | 783a4c48e04e81783848f0cb0f757f6a836d7f6e (diff) |
Add chapter8 script commands.
Diffstat (limited to 'chapter8/tcl.sh')
-rw-r--r-- | chapter8/tcl.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/chapter8/tcl.sh b/chapter8/tcl.sh index 7a693aa..688dc5e 100644 --- a/chapter8/tcl.sh +++ b/chapter8/tcl.sh @@ -1,3 +1,35 @@ #!/bin/bash +tar -xf ../tcl"${VERSION}"-html.tar.gz --strip-components=1 +SRCDIR=$(pwd) +cd unix || exit 1 +./configure --prefix=/usr \ + --mandir=/usr/share/man \ + "$([ "$(uname -m)" = x86_64 ] && echo --enable-64bit)" + +make + +sed -e "s|${SRCDIR}/unix|/usr/lib|" \ + -e "s|${SRCDIR}|/usr/include|" \ + -i tclConfig.sh + +sed -e "s|${SRCDIR}/unix/pkgs/tdbc1.1.2|/usr/lib/tdbc1.1.2|" \ + -e "s|${SRCDIR}/pkgs/tdbc1.1.2/generic|/usr/include|" \ + -e "s|${SRCDIR}/pkgs/tdbc1.1.2/library|/usr/lib/tcl8.6|" \ + -e "s|${SRCDIR}/pkgs/tdbc1.1.2|/usr/include|" \ + -i pkgs/tdbc1.1.2/tdbcConfig.sh + +sed -e "s|${SRCDIR}/unix/pkgs/itcl4.2.1|/usr/lib/itcl4.2.1|" \ + -e "s|${SRCDIR}/pkgs/itcl4.2.1/generic|/usr/include|" \ + -e "s|${SRCDIR}/pkgs/itcl4.2.1|/usr/include|" \ + -i pkgs/itcl4.2.1/itclConfig.sh + +unset SRCDIR + +make -j1 install + +chmod -v u+w /usr/lib/libtcl8.6.so +make -j1 install-private-headers +ln -sfv tclsh8.6 /usr/bin/tclsh +mv /usr/share/man/man3/{Thread,Tcl_Thread}.3 |