Created
September 30, 2012 10:49
-
-
Save smcl/3806444 to your computer and use it in GitHub Desktop.
install blackbox prerequisites
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
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