2010-11-10 15:59:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gosu < Formula
|
2013-01-28 02:56:51 +00:00
|
|
|
homepage 'http://gosu-lang.org/'
|
2013-11-30 20:01:26 +00:00
|
|
|
url 'http://gosu-lang.org/nexus/content/repositories/gosu/org/gosu-lang/gosu/gosu/0.10.2/gosu-0.10.2-full.tar.gz'
|
|
|
|
sha1 '8ca0afa29049669df2ab3f335bf6a6a05e0936f5'
|
2010-11-10 15:59:03 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm "bin/gosu.cmd"
|
|
|
|
touch "ext/.anchor"
|
2013-11-30 20:01:26 +00:00
|
|
|
libexec.install Dir['*']
|
|
|
|
bin.install_symlink libexec/'bin/gosu'
|
2010-11-10 15:59:03 +00:00
|
|
|
end
|
|
|
|
end
|