#!/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.69.tar.gz | |
tar xzf autoconf-2.69.tar.gz | |
cd autoconf-2.69 | |
./configure --prefix=/usr/local | |
make | |
sudo make install | |
export PATH=$PATH:/usr/local/bin | |
## | |
# Automake | |
# 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 | |
## | |
# Libtool | |
# 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 | |
echo "Installation complete." |
This comment has been minimized.
This comment has been minimized.
This worked perfectly, much appreciated. |
This comment has been minimized.
This comment has been minimized.
Thanks! :-) |
This comment has been minimized.
This comment has been minimized.
Thanks. Working on Sierra too :-) |
This comment has been minimized.
This comment has been minimized.
Working in Sierra! |
This comment has been minimized.
This comment has been minimized.
Just a few extra comments for those of us that are really new to command line:
And it should work! Thank you @justinbellamy this worked perfectly. You saved me a bundle of time! |
This comment has been minimized.
This comment has been minimized.
Thanks very helpful |
This comment has been minimized.
This comment has been minimized.
Thank you so much, this worked perfectly!!!! |
This comment has been minimized.
This comment has been minimized.
Thanks very helpful!! |
This comment has been minimized.
This comment has been minimized.
Thanks! :) |
This comment has been minimized.
This comment has been minimized.
Thanks so much, very helpful!! |
This comment has been minimized.
This comment has been minimized.
Thanks! |
This comment has been minimized.
This comment has been minimized.
Thanks so much. |
This comment has been minimized.
This comment has been minimized.
Love it! |
This comment has been minimized.
This comment has been minimized.
Thank you, you saved me a lot of time :) |
This comment has been minimized.
This comment has been minimized.
Thanks a lot !! :D :D :D :D :D |
This comment has been minimized.
This comment has been minimized.
This should have a link for autoconf as
Otherwise tar doesn't recognize the archive format and exits. |
This comment has been minimized.
This comment has been minimized.
thank u,it's very helpful. |
This comment has been minimized.
This comment has been minimized.
SUPER SUPER helpful. THANK YOU! |
This comment has been minimized.
This comment has been minimized.
Thanks ! worked great ! |
This comment has been minimized.
This comment has been minimized.
This is awesome, I really appreciate it :) |
This comment has been minimized.
Thanks very helpful