From 7dcab06369967afefde93cddae2bc27f07a09ec6 Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Sat, 31 Dec 2011 00:06:56 -0600 Subject: graphviz: fix GraphViz.app => Graphviz.app graphviz builds its application bundle as Graphviz.app; a typo was preventing it from installing correctly on case-sensitive systems. Fixes #9348. --- Library/Formula/graphviz.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/graphviz.rb b/Library/Formula/graphviz.rb index 10625ebb1..1027fa540 100644 --- a/Library/Formula/graphviz.rb +++ b/Library/Formula/graphviz.rb @@ -37,11 +37,11 @@ class Graphviz < Formula system "./configure", *args system "make install" - # build GraphViz.app + # build Graphviz.app Dir.chdir "macosx" do system "xcodebuild", "-configuration", "Release", "SYMROOT=build", "PREFIX=#{prefix}", "ONLY_ACTIVE_ARCH=YES" end - prefix.install "macosx/build/Release/GraphViz.app" + prefix.install "macosx/build/Release/Graphviz.app" end def test @@ -58,7 +58,7 @@ class Graphviz < Formula end def caveats; <<-EOS - GraphViz.app was installed in: + Graphviz.app was installed in: #{prefix} To symlink into ~/Applications, you can do: -- cgit v1.2.3