forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class AutoconfAT213 < Formula
desc "Automatic configure script builder"
homepage "https://www.gnu.org/software/autoconf/"
url "https://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz"
mirror "https://ftpmirror.gnu.org/autoconf/autoconf-2.13.tar.gz"
sha256 "f0611136bee505811e9ca11ca7ac188ef5323a8e2ef19cffd3edb3cf08fd791e"
bottle do
sha256 "1ea8c751806adc1ee85dcfef1b66d2d8aaed52d9848362635bed0251b7437fa4" => :mojave
sha256 "180a5d234c513e34952d639cfbcb5c486d64ad814d3d422b6cf86d048c0267c8" => :high_sierra
sha256 "1631e2f720355ef11b150ebddde824c02eab44a336203bcdb5282e4784ecbcd9" => :sierra
sha256 "f6b148c2bcf08f0e143a4757fa6784bf9e0d780d5ca8ec8cd97c042316c50d84" => :el_capitan
sha256 "f6b148c2bcf08f0e143a4757fa6784bf9e0d780d5ca8ec8cd97c042316c50d84" => :yosemite
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--program-suffix=213",
"--prefix=#{prefix}",
"--infodir=#{pkgshare}/info",
"--datadir=#{pkgshare}"
system "make", "install"
end
test do
assert_match "Usage: autoconf", shell_output("#{bin}/autoconf213 --help 2>&1")
end
end