# Build/install Tk the way Slackware's binary package is made:
CWD=`pwd`
cd /tmp
tar xzvf $CWD/tk8.3.1.tar.gz
cd tk8.3.1
mkdir -p /usr/doc/tk8.3.1
cp -a README changes license.terms /usr/doc/tk8.3.1
chown root.root /usr/doc/tk8.3.1/*
cd unix
./configure --prefix=/usr --disable-shared
make install
make clean
./configure --prefix=/usr --enable-shared
make install
