automake@1.12: remove
This commit is contained in:
parent
7ac0b44c95
commit
2f5b64ded2
2 changed files with 0 additions and 59 deletions
|
@ -1 +0,0 @@
|
|||
../Formula/automake.rb
|
|
@ -1,58 +0,0 @@
|
|||
class AutomakeAT112 < Formula
|
||||
desc "Tool for generating GNU Standards-compliant Makefiles"
|
||||
homepage "https://www.gnu.org/software/automake/"
|
||||
url "https://ftp.gnu.org/gnu/automake/automake-1.12.6.tar.gz"
|
||||
mirror "https://ftpmirror.gnu.org/automake/automake-1.12.6.tar.gz"
|
||||
sha256 "0cbe570db487908e70af7119da85ba04f7e28656b26f717df0265ae08defd9ef"
|
||||
revision 1
|
||||
|
||||
bottle do
|
||||
cellar :any_skip_relocation
|
||||
sha256 "abada42d8234d43f6e2b5af66389d5b930752f20d0a413b34e438ddc53097e36" => :high_sierra
|
||||
sha256 "74e9cf57241defe9e32223904bb91a881f1091b7081a552fcdde2f520fdfeaa2" => :sierra
|
||||
sha256 "3caf60c70024e3997193a907f1e848b4a37e5a2e3465c9e95ab97a709faebe00" => :el_capitan
|
||||
sha256 "7a20cc435d255a4b2f31dfa4246020e91bcaeaa4706576b8847366f7422d31e8" => :yosemite
|
||||
end
|
||||
|
||||
depends_on "autoconf" => :run
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--program-suffix=112"
|
||||
system "make", "install"
|
||||
|
||||
# Fix aclocal not escaping @ character correctly.
|
||||
inreplace "#{bin}/aclocal112",
|
||||
"\"#{share}/aclocal-$APIVERSION\"",
|
||||
"\"#{HOMEBREW_CELLAR}/automake\\@1.12/#{pkg_version}/share/aclocal-$APIVERSION\""
|
||||
|
||||
# Our aclocal must go first. See:
|
||||
# https://github.com/Homebrew/homebrew/issues/10618
|
||||
(share/"aclocal/dirlist").write <<~EOS
|
||||
#{HOMEBREW_PREFIX}/share/aclocal
|
||||
/usr/share/aclocal
|
||||
EOS
|
||||
end
|
||||
|
||||
test do
|
||||
(testpath/"test.c").write <<~EOS
|
||||
int main() { return 0; }
|
||||
EOS
|
||||
(testpath/"configure.ac").write <<~EOS
|
||||
AC_INIT(test, 1.0)
|
||||
AM_INIT_AUTOMAKE
|
||||
AC_PROG_CC
|
||||
AC_CONFIG_FILES(Makefile)
|
||||
AC_OUTPUT
|
||||
EOS
|
||||
(testpath/"Makefile.am").write <<~EOS
|
||||
bin_PROGRAMS = test
|
||||
test_SOURCES = test.c
|
||||
EOS
|
||||
system bin/"aclocal112"
|
||||
system bin/"automake112", "--add-missing", "--foreign"
|
||||
system "autoconf"
|
||||
system "./configure"
|
||||
system "make"
|
||||
system "./test"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue