homebrew-core/Formula/autogen.rb
2015-09-24 07:49:43 +01:00

33 lines
1.1 KiB
Ruby

class Autogen < Formula
desc "Automated text file generator"
homepage "http://autogen.sourceforge.net"
url "http://ftpmirror.gnu.org/autogen/rel5.18.4/autogen-5.18.4.tar.xz"
mirror "https://ftp.gnu.org/gnu/autogen/rel5.18.4/autogen-5.18.4.tar.xz"
sha256 "7fbaff0c25035aee5b96913de2c83d9a5cc973b8dc08d6b7489ecbcfd72eb84b"
bottle do
revision 1
sha256 "351cd4892f35d90e5a1b0eb4be71bb6126d602232447e4515d4891f82fbb14d5" => :el_capitan
sha1 "caa1ffc8b0b5403586694ca15846145e731b935d" => :yosemite
sha1 "def1fe9af81c138662c763b2527aed3f19e24f56" => :mavericks
sha1 "c7507958613ed6dc9027037d34b117c806867434" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "guile"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
# make and install must be separate steps for this formula
system "make"
system "make", "install"
end
test do
system bin/"autogen", "-v"
end
end