aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2011-04-28 11:54:31 +0100
committerMax Howell2011-04-28 11:56:40 +0100
commitdbbe308842b090cf945c02e4df9702934041daa0 (patch)
tree0e976b07feac1904babfd4b21a02ddd8e7b70bb3 /Library
parent460a1686ae750d7fe026768eb42483723e6ab07b (diff)
downloadhomebrew-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')
-rw-r--r--Library/Formula/runcocoa.rb13
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