maketcl 241 B

12345678
  1. #!/bin/sh
  2. wget http://aleron.dl.sourceforge.net/sourceforge/tcl/tcl8.4.4-src.tar.gz
  3. tar -zxf tcl8.4.4-src.tar.gz
  4. cd tcl8.4.4/
  5. cd unix/
  6. ./configure --prefix=${HOME} --exec-prefix=${HOME} --disable-shared
  7. make && make install
  8. rm -rf tcl8.4.4*