Created
October 20, 2011 16:10
-
-
Save tungd/1301547 to your computer and use it in GitHub Desktop.
Install TkGate 2.0 on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install build-essential autotools-dev tcl8.5-dev tk8.5-dev | |
cd $HOME | |
mkdir build && cd build | |
wget ftp://gadoid.ices.cmu.edu/pub/tkgate/pre-release/tkgate-2.0-b10.tar.gz | |
tar xvzf tkgate-2.0-b10.tar.gz | |
cd tkgate-2.0-b10/ | |
./configure | |
make | |
# Only if you want to install | |
# sudo make install | |
# To run | |
./src/tkgate/tkgate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment