2012-02-27 00:41:17 +00:00
|
|
|
class Autoconf < Formula
|
2015-03-14 08:07:47 +00:00
|
|
|
homepage "https://www.gnu.org/software/autoconf"
|
2014-12-27 15:59:32 +00:00
|
|
|
url "http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz"
|
2015-03-14 08:07:47 +00:00
|
|
|
mirror "https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz"
|
|
|
|
sha256 "954bd69b391edc12d6a4a51a2dd1476543da5c6bbf05a95b59dc0dd6fd4c2969"
|
2012-02-27 00:41:17 +00:00
|
|
|
|
2013-10-28 10:34:25 +00:00
|
|
|
bottle do
|
2014-02-16 18:51:43 +00:00
|
|
|
revision 1
|
2014-10-17 20:36:53 +00:00
|
|
|
sha1 "3f83cb206720445748c0c4851152607bfabaa926" => :yosemite
|
2014-02-16 18:51:43 +00:00
|
|
|
sha1 "319a4ac05d83b5b3db37dcc629a46a412ec1989b" => :mavericks
|
|
|
|
sha1 "83184a596d69f3a868e6780c1c8fba309ea28fb2" => :mountain_lion
|
|
|
|
sha1 "7d31f63e5ddd1bbbf0397b0b70df1ff9e70f998b" => :lion
|
2013-10-28 10:34:25 +00:00
|
|
|
end
|
|
|
|
|
2014-04-03 14:11:51 +00:00
|
|
|
keg_only :provided_until_xcode43
|
2012-02-27 20:08:58 +00:00
|
|
|
|
2012-02-27 00:41:17 +00:00
|
|
|
def install
|
2014-12-27 15:59:32 +00:00
|
|
|
ENV["PERL"] = "/usr/bin/perl"
|
2013-08-16 16:24:18 +00:00
|
|
|
|
2013-01-27 22:37:00 +00:00
|
|
|
# force autoreconf to look for and use our glibtoolize
|
2014-12-27 15:59:32 +00:00
|
|
|
inreplace "bin/autoreconf.in", "libtoolize", "glibtoolize"
|
2014-12-27 20:07:17 +00:00
|
|
|
# also touch the man page so that it isn't rebuilt
|
2014-12-27 15:59:32 +00:00
|
|
|
inreplace "man/autoreconf.1", "libtoolize", "glibtoolize"
|
2012-02-28 17:32:21 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2014-12-27 15:59:32 +00:00
|
|
|
system "make", "install"
|
|
|
|
rm_f info/"standards.info"
|
2012-02-27 00:41:17 +00:00
|
|
|
end
|
|
|
|
|
2013-01-27 22:37:00 +00:00
|
|
|
test do
|
2014-12-27 15:59:32 +00:00
|
|
|
cp "#{share}/autoconf/autotest/autotest.m4", "autotest.m4"
|
|
|
|
system "#{bin}/autoconf", "autotest.m4"
|
2012-02-27 00:41:17 +00:00
|
|
|
end
|
|
|
|
end
|