diff options
| author | Max Howell | 2011-04-28 11:54:31 +0100 |
|---|---|---|
| committer | Max Howell | 2011-04-28 11:56:40 +0100 |
| commit | dbbe308842b090cf945c02e4df9702934041daa0 (patch) | |
| tree | 0e976b07feac1904babfd4b21a02ddd8e7b70bb3 /Library/Formula | |
| parent | 460a1686ae750d7fe026768eb42483723e6ab07b (diff) | |
| download | homebrew-dbbe308842b090cf945c02e4df9702934041daa0.tar.bz2 | |
Runcocoa; unversioned so I used 'a'
Runcocoa allows you to run Cocoa snippets from the command line. It will even work with iOS lines.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/runcocoa.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/runcocoa.rb b/Library/Formula/runcocoa.rb new file mode 100644 index 000000000..d2cfb58fe --- /dev/null +++ b/Library/Formula/runcocoa.rb @@ -0,0 +1,13 @@ +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' + + def install + bin.install 'runcocoa.sh' => 'runcocoa' + bin.install 'runc.sh' => 'runc' + end +end |
