aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorcleiby2010-11-10 10:59:03 -0500
committerAdam Vandenberg2011-02-22 22:01:55 -0800
commit2528cd7d791388cb7f9ef3c8702e14c1717fc181 (patch)
treec779698ed67ece2adf797fd0ad6559166dff9838 /Library
parente9811f5c5b9c6406ef7127b659e5400cfd8b0a30 (diff)
downloadhomebrew-2528cd7d791388cb7f9ef3c8702e14c1717fc181.tar.bz2
Adding the gosu programming language
Gosu is a programming language for the Java Virtual Machine (JVM). Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gosu.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/gosu.rb b/Library/Formula/gosu.rb
new file mode 100644
index 000000000..749cd853d
--- /dev/null
+++ b/Library/Formula/gosu.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Gosu <Formula
+ url 'http://gosu-lang.org/downloads/gosu-0.7.0.1-C.zip'
+ version '0.7.0.1-C'
+ homepage 'http://gosu-lang.org/'
+ md5 '3ea42cdc403ee57397a9559f6a95be67'
+
+ def install
+ mv "bin/gosu.sh", "bin/gosu"
+ rm "bin/gosu.cmd"
+ touch "ext/.anchor"
+ prefix.install Dir['*']
+ end
+end