From f61996fd5dab2cd7115010c67d4f64995298de04 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Thu, 16 Aug 2012 23:15:42 +0200 Subject: [PATCH] automake1-11: install nicely without clashing with "automake" formula --- automake1-11.rb | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/automake1-11.rb b/automake1-11.rb index 56bae85..ff5d33f 100644 --- a/automake1-11.rb +++ b/automake1-11.rb @@ -8,19 +8,17 @@ class Automake111 < Formula depends_on "autoconf" => :build - if MacOS.xcode_version.to_f < 4.3 or File.file? "/usr/bin/automake" - keg_only "Xcode (up to and including 4.2) provides (a rather old) Automake." - end - def install system "./configure", "--prefix=#{prefix}" system "make install" - # our aclocal must go first: https://github.com/mxcl/homebrew/issues/10618 - (share/"aclocal/dirlist").write <<-EOS.undent - #{HOMEBREW_PREFIX}/share/aclocal - /usr/share/aclocal - EOS + # remove all files that clash with the "automake" formula ... + system "rm", "#{prefix}/bin/aclocal" + system "rm", "#{prefix}/bin/automake" + system "rm", "#{prefix}/share/man/man1/aclocal.1" + system "rm", "#{prefix}/share/man/man1/automake.1" + system "rm", "-r", "#{prefix}/share/doc" + system "rm", "-r", "#{prefix}/share/info" end def test -- 2.39.2