mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2024-11-13 00:39:46 +00:00
60 lines
1.2 KiB
Bash
60 lines
1.2 KiB
Bash
#!/bin/bash
|
|
|
|
cd /sources
|
|
tar xf tcl8.6.12-src.tar.gz
|
|
cd tcl8.6.12-src
|
|
|
|
tar -xf ../tcl8.6.12-html.tar.gz --strip-components=1
|
|
|
|
SRCDIR=$(pwd)
|
|
cd unix
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/share/man
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
make -j5
|
|
|
|
if [ $? -ne 0 ]
|
|
then
|
|
exit 1
|
|
fi
|
|
|
|
sed -e "s|$SRCDIR/unix|/usr/lib|" \
|
|
-e "s|$SRCDIR|/usr/include|" \
|
|
-i tclConfig.sh
|
|
|
|
sed -e "s|$SRCDIR/unix/pkgs/tdbc1.1.3|/usr/lib/tdbc1.1.3|" \
|
|
-e "s|$SRCDIR/pkgs/tdbc1.1.3/generic|/usr/include|" \
|
|
-e "s|$SRCDIR/pkgs/tdbc1.1.3/library|/usr/lib/tcl8.6|" \
|
|
-e "s|$SRCDIR/pkgs/tdbc1.1.3|/usr/include|" \
|
|
-i pkgs/tdbc1.1.3/tdbcConfig.sh
|
|
|
|
sed -e "s|$SRCDIR/unix/pkgs/itcl4.2.2|/usr/lib/itcl4.2.2|" \
|
|
-e "s|$SRCDIR/pkgs/itcl4.2.2/generic|/usr/include|" \
|
|
-e "s|$SRCDIR/pkgs/itcl4.2.2|/usr/include|" \
|
|
-i pkgs/itcl4.2.2/itclConfig.sh
|
|
|
|
unset SRCDIR
|
|
|
|
make test
|
|
|
|
make install
|
|
|
|
chmod -v u+w /usr/lib/libtcl8.6.so
|
|
|
|
make install-private-headers
|
|
|
|
ln -sfv tclsh8.6 /usr/bin/tclsh
|
|
|
|
mv /usr/share/man/man3/{Thread,Tcl_Thread}.3
|
|
|
|
mkdir -v -p /usr/share/doc/tcl-8.6.12
|
|
cp -v -r ../html/* /usr/share/doc/tcl-8.6.12
|
|
|
|
cd /sources
|
|
rm -rf tcl8.6.12-src
|
|
|