Skip to content

Instantly share code, notes, and snippets.

@smcl
Created September 30, 2012 10:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smcl/3806444 to your computer and use it in GitHub Desktop.
Save smcl/3806444 to your computer and use it in GitHub Desktop.
install blackbox prerequisites
install_tar_gz ()
{
curl -LO $1/$2.tar.gz
tar -xzf $2.tar.gz
cd $2
./configure
make
sudo make install
cd ..
}
install_tar_gz "http://ftp.sh.cvut.cz/MIRRORS/gnu/pub/gnu/libtool" "libtool-2.4.2"
install_tar_gz "http://ftp.gnu.org/gnu/automake" "automake-1.12"
install_tar_gz "http://ftp.gnu.org/gnu/autoconf" "autoconf-2.65"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment