homebrew-core/Formula/open-tyrian.rb

31 lines
720 B
Ruby
Raw Normal View History

2009-11-23 05:30:48 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class OpenTyrianData < Formula
2009-11-23 05:30:48 +00:00
url 'http://sites.google.com/a/camanis.net/opentyrian/tyrian/tyrian21.zip'
md5 '2a3b206a6de25ed4b771af073f8ca904'
end
2011-03-10 05:11:03 +00:00
class OpenTyrian < Formula
url 'http://opentyrian.googlecode.com/hg/', :revision => '9ddcd06e48'
2009-11-23 05:30:48 +00:00
homepage 'http://code.google.com/p/opentyrian/'
version '20091122'
2009-11-23 05:30:48 +00:00
depends_on 'sdl'
depends_on 'sdl_net'
def install
OpenTyrianData.new.brew { libexec.install Dir['*'] }
2009-11-23 05:30:48 +00:00
system "make release"
libexec.install "opentyrian"
2012-02-11 23:45:22 +00:00
(bin+'opentyrian').write <<-END.undent
#!/bin/bash
"#{libexec}/opentyrian" --data="#{libexec}" "$@"
END
2009-11-23 05:30:48 +00:00
end
def caveats
"Save games will be put in ~/.opentyrian"
end
end