-
-
Save jintgeorge/dd2a847a639f44a69a2860a5f3e47891 to your computer and use it in GitHub Desktop.
Revisions
-
justinbellamy revised this gist
Nov 21, 2015 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -15,9 +15,9 @@ mkdir -p $build # http://ftpmirror.gnu.org/autoconf cd $build curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz tar xzf autoconf-2.69.tar.gz cd autoconf-2.69 ./configure --prefix=/usr/local make sudo make install -
justinbellamy revised this gist
Nov 21, 2015 . 1 changed file with 9 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -15,9 +15,9 @@ mkdir -p $build # http://ftpmirror.gnu.org/autoconf cd $build curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-latest.tar.gz tar xzf autoconf-latest.tar.gz cd autoconf-latest ./configure --prefix=/usr/local make sudo make install @@ -28,9 +28,9 @@ export PATH=$PATH:/usr/local/bin # http://ftpmirror.gnu.org/automake cd $build curl -OL http://ftpmirror.gnu.org/automake/automake-1.15.tar.gz tar xzf automake-1.15.tar.gz cd automake-1.15 ./configure --prefix=/usr/local make sudo make install @@ -40,9 +40,9 @@ sudo make install # http://ftpmirror.gnu.org/libtool cd $build curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz tar xzf libtool-2.4.6.tar.gz cd libtool-2.4.6 ./configure --prefix=/usr/local make sudo make install -
jellybeansoup revised this gist
Nov 10, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -21,7 +21,7 @@ cd autoconf-2.68 ./configure --prefix=/usr/local make sudo make install export PATH=$PATH:/usr/local/bin ## # Automake -
jellybeansoup revised this gist
Dec 3, 2012 . 1 changed file with 8 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -18,10 +18,10 @@ cd $build curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.68.tar.gz tar xzf autoconf-2.68.tar.gz cd autoconf-2.68 ./configure --prefix=/usr/local make sudo make install export PATH=/usr/local/bin ## # Automake @@ -31,9 +31,9 @@ cd $build curl -OL http://ftpmirror.gnu.org/automake/automake-1.11.tar.gz tar xzf automake-1.11.tar.gz cd automake-1.11 ./configure --prefix=/usr/local make sudo make install ## # Libtool @@ -43,8 +43,8 @@ cd $build curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.tar.gz tar xzf libtool-2.4.tar.gz cd libtool-2.4 ./configure --prefix=/usr/local make sudo make install echo "Installation complete." -
jellybeansoup created this gist
Dec 3, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,50 @@ #!/bin/sh ## # Install autoconf, automake and libtool smoothly on Mac OS X. # Newer versions of these libraries are available and may work better on OS X # # This script is originally from http://jsdelfino.blogspot.com.au/2012/08/autoconf-and-automake-on-mac-os-x.html # export build=~/devtools # or wherever you'd like to build mkdir -p $build ## # Autoconf # http://ftpmirror.gnu.org/autoconf cd $build curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.68.tar.gz tar xzf autoconf-2.68.tar.gz cd autoconf-2.68 ./configure --prefix=$build/autotools-bin make make install export PATH=$PATH:$build/autotools-bin/bin ## # Automake # http://ftpmirror.gnu.org/automake cd $build curl -OL http://ftpmirror.gnu.org/automake/automake-1.11.tar.gz tar xzf automake-1.11.tar.gz cd automake-1.11 ./configure --prefix=$build/autotools-bin make make install ## # Libtool # http://ftpmirror.gnu.org/libtool cd $build curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.tar.gz tar xzf libtool-2.4.tar.gz cd libtool-2.4 ./configure --prefix=$build/autotools-bin make make install echo "Installation complete."