Skip to content

Instantly share code, notes, and snippets.

@tungd
Created October 20, 2011 16:10
Show Gist options
  • Save tungd/1301547 to your computer and use it in GitHub Desktop.
Save tungd/1301547 to your computer and use it in GitHub Desktop.
Install TkGate 2.0 on Ubuntu
#!/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