Skip to content

Instantly share code, notes, and snippets.

@guilleiguaran
Last active August 29, 2015 13:56
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save guilleiguaran/8936760 to your computer and use it in GitHub Desktop.
#!/bin/sh
root=$(pwd)
echo "Downloading GNU Go 3.8..."
curl http://mirrors.kernel.org/gnu/gnugo/gnugo-3.8.tar.gz -s -o - | tar xzf - -C .
cd gnugo-*
echo "Compiling..."
./configure
make
cd $root
cp gnugo-*/interface/gnugo .
rm -fr gnugo-*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment