Skip to content

Instantly share code, notes, and snippets.

@zpao
Created June 6, 2011 17:56
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zpao/1010716 to your computer and use it in GitHub Desktop.
Save zpao/1010716 to your computer and use it in GitHub Desktop.
autoconf 2.13 homebrew formula

Install

  1. install homebrew
  2. place autoconf.rb into Formula folder: /usr/local/Library/Formula/
  3. run brew install autoconf
require 'formula'
class Autoconf < Formula
url 'http://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz'
homepage 'http://www.gnu.org/software/autoconf/'
md5 '9de56d4a161a723228220b0f425dc711'
def install
system "./configure", "--program-suffix=213",
"--prefix=#{prefix}",
"--infodir=#{info}"
system "make install"
end
end
@othree
Copy link

othree commented Jul 14, 2015

md5 is not support by homebrew now.
sha1 e4826c8bd85325067818f19b2b2ad2b625da66fc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment