automake 1.15

Update to latest stable release, change single quotes to double, change
format of 'make install' command, remove 'require "formula"'

Closes Homebrew/homebrew#35579.
This commit is contained in:
David Christenson 2015-01-05 14:37:52 -07:00 committed by Mike McQuaid
parent 2d9d60e16a
commit 280f283bfb

View file

@ -1,27 +1,25 @@
require 'formula'
class Automake < Formula
homepage 'http://www.gnu.org/software/automake/'
url 'http://ftpmirror.gnu.org/automake/automake-1.14.1.tar.gz'
mirror 'http://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.gz'
sha1 '0bb1714b78d70cab9907d2013082978a28f48a46'
homepage "http://www.gnu.org/software/automake/"
url "http://ftpmirror.gnu.org/automake/automake-1.15.tar.xz"
mirror "https://ftp.gnu.org/gnu/automake/automake-1.15.tar.xz"
sha1 "c279b35ca6c410809dac8ade143b805fb48b7655"
bottle do
sha1 "b7f153654e9a99194f13a8da140b3d861f046af0" => :yosemite
sha1 '8720e073a828e5b7e29e5cacd01b3ccca88a6d40' => :mavericks
sha1 'ed3cba7f2a806a4192e875e809bb73b65a128757' => :mountain_lion
sha1 '12d0d7d3b6d31ea4faf9551076225343e9a5af1f' => :lion
sha1 "8720e073a828e5b7e29e5cacd01b3ccca88a6d40" => :mavericks
sha1 "ed3cba7f2a806a4192e875e809bb73b65a128757" => :mountain_lion
sha1 "12d0d7d3b6d31ea4faf9551076225343e9a5af1f" => :lion
end
depends_on 'autoconf' => :run
depends_on "autoconf" => :run
keg_only :provided_until_xcode43
def install
ENV['PERL'] = '/usr/bin/perl'
ENV["PERL"] = "/usr/bin/perl"
system "./configure", "--prefix=#{prefix}"
system "make install"
system "make", "install"
# Our aclocal must go first. See:
# https://github.com/Homebrew/homebrew/issues/10618