Adding the gosu programming language

Gosu is a programming language for the Java Virtual Machine (JVM).

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
cleiby 2010-11-10 10:59:03 -05:00 committed by Adam Vandenberg
parent 2d65345efb
commit 8ca75de5bb

15
Formula/gosu.rb Normal file
View file

@ -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