From 10640ea87b1ebe7ede30992a8683550eac2084e4 Mon Sep 17 00:00:00 2001 From: Ronny Haryanto Date: Tue, 3 Apr 2012 16:36:47 +1000 Subject: Wrapper script for phantomjs to hide Dock icon. Closes #11412. Signed-off-by: Mike McQuaid --- Library/Formula/phantomjs.rb | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/phantomjs.rb b/Library/Formula/phantomjs.rb index 1689303a5..648fad9d1 100644 --- a/Library/Formula/phantomjs.rb +++ b/Library/Formula/phantomjs.rb @@ -17,14 +17,16 @@ class Phantomjs < Formula depends_on NeedsSnowLeopardOrNewer.new - def install - bin.install "bin/phantomjs" + def script; <<-EOS.undent + #!/bin/sh + # phantomjs wrapper script to hide dock icon + # See http://code.google.com/p/phantomjs/issues/detail?id=281 + exec #{libexec}/phantomjs "$@" + EOS end - def caveats; <<-EOS.undent - PhantomJS in Homebrew currently does not hide the dock icon. - For more information see: - http://code.google.com/p/phantomjs/issues/detail?id=281 - EOS + def install + libexec.install ['bin/phantomjs', 'bin/Info.plist'] + (bin+'phantomjs').write script end end -- cgit v1.2.3