sh 在OS X El Capitan上安装Autoconf和Automake

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在OS X El Capitan上安装Autoconf和Automake相关的知识,希望对你有一定的参考价值。

#!/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://ftp-gnu-org.ip-connect.vn.ua/autoconf/autoconf-latest.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."

以上是关于sh 在OS X El Capitan上安装Autoconf和Automake的主要内容,如果未能解决你的问题,请参考以下文章

制作 Mac OS X El Capitan 的U盘引导安装

无法在 OS X“El Capitan”上安装 gem

如何在 OS X El Capitan 上安装 ngrok?

尝试在 OS X El Capitan 上安装 PyCrypto 时出现致命错误

在 Mac OS X El Capitan 10.11.4 上安装 MySQL 5.7

使用 Python 3.5.1 在 OS X El Capitan 上安装 OpenCV 3.1