diff options
| author | Hugo Ferreira | 2012-07-19 02:18:05 +0200 | 
|---|---|---|
| committer | Misty De Meo | 2012-07-18 23:21:45 -0500 | 
| commit | d7614764ae18b1989149a08d48ce94b63ccf4afb (patch) | |
| tree | 31320e669d9f1ab5007e2a2b0c87daa3ca22283a | |
| parent | fbf2e1ead09e0c8184119453a92b343f1e09714d (diff) | |
| download | homebrew-d7614764ae18b1989149a08d48ce94b63ccf4afb.tar.bz2 | |
runcocoa 20120108
- Make commands for gcc and llvm-gcc version agnostic
- Do not hardcode the path of gcc and llvm-gcc
- Added '-nomain' parameter to add your own main routine, for more advanced uses (eg. adding classes)
Closes #13483.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
| -rw-r--r-- | Library/Formula/runcocoa.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Formula/runcocoa.rb b/Library/Formula/runcocoa.rb index d2cfb58fe..db7e60230 100644 --- a/Library/Formula/runcocoa.rb +++ b/Library/Formula/runcocoa.rb @@ -2,9 +2,9 @@ require 'formula'  class Runcocoa < Formula    homepage 'https://github.com/michaeltyson/Commandline-Cocoa' -  url 'https://github.com/michaeltyson/Commandline-Cocoa/tarball/e64b3666bca94c501c88' -  md5 'bc396ac6ccab09e2f978b81771f13e3b' -  version 'a' +  url 'https://github.com/michaeltyson/Commandline-Cocoa/tarball/834f73b4b5d0d2be0d336c9869973f5f0db55949' +  md5 'ae9f074333e9b9e21c346064dc03428c' +  version '20120108'    def install      bin.install 'runcocoa.sh' => 'runcocoa' | 
