#!/bin/bash
set +h
set -e

cd $PKGDIR
cd unix
./configure --prefix=/tools
make
make install
chmod -v u+w /tools/lib/libtcl8.6.so
make install-private-headers
ln -sv tclsh8.6 /tools/bin/tclsh
echo -e "\n\nTotalseconds: $SECONDS\n"
exit
