aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gosu.rb
blob: 2ca7b66a4c7c1045562f4ab6f9a92cd75c06fb21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Gosu < Formula
  url 'http://gosu-lang.org/downloads/gosu-0.8.6.1-C/gosu-0.8.6.1-C.tgz'
  version '0.8.6.1-C'
  homepage 'http://gosu-lang.org/'
  sha1 '6e4b4e95bc75237a1e04118aa31e9bdf331dbb0f'

  def install
    mv "bin/gosu.sh", "bin/gosu"
    rm "bin/gosu.cmd"
    touch "ext/.anchor"
    prefix.install Dir['*']
  end
end