Skip to content

Instantly share code, notes, and snippets.

@perfaram
Forked from jellybeansoup/cltools.sh
Last active December 7, 2015 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save perfaram/1dad8da22b324bc4016c to your computer and use it in GitHub Desktop.
Save perfaram/1dad8da22b324bc4016c to your computer and use it in GitHub Desktop.
#!/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-latest.tar.gz
tar xzf autoconf-*.tar.gz
cd autoconf-*
./configure --prefix=/usr/local
make
sudo make install
export PATH=$PATH:/usr/local/bin
cd ..
rm -r autoconf-*
##
# 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=/usr/local
make
sudo 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=/usr/local
make
sudo make install
echo "Installation complete."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment