Advertisement
arcanosam

Build TclTk 8.6.6 in CentOS7

Jun 10th, 2017
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.46 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # build without errors... but I don't test if really works...
  4. # just did to install python by pyenv with support tcl/tk
  5.  
  6. cd /home/myuser/Downloads/tcl8.6.6/unix/
  7.  
  8. ./configure --prefix=/home/myuser/Tools/tcltk866 \
  9.         --enable-threads --enable-shared
  10.  
  11. make
  12.  
  13.  make install
  14.  
  15.  
  16. cd /home/myuser/Downloads/tk8.6.6/unix/
  17.  
  18. ./configure --prefix=/home/myuser/Tools/tcltk866 \
  19.         --with-tcl=/home/myuser/Downloads/tcl8.6.6/unix/
  20.        
  21. make
  22.  
  23. make install
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement