- install homebrew
- place
autoconf213.rb
into Formula folder:/usr/local/Library/Formula/
- run
brew install autoconf213
-
-
Save lenaschoenburg/6249903 to your computer and use it in GitHub Desktop.
This file contains 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 characters
require 'formula' | |
class Autoconf213 < 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment