require 'formula' class OpenTyrianData '9ddcd06e48' homepage 'http://code.google.com/p/opentyrian/' depends_on 'sdl' depends_on 'sdl_net' def install OpenTyrianData.new.brew { libexec.install Dir['*'] } system "make release" libexec.install "opentyrian" # Use a startup script to find the game data (bin+'opentyrian').write startup_script end def startup_script <<-END #!/bin/bash #{libexec}/opentyrian --data=#{libexec} $* END end def caveats "Save games will be put in ~/.opentyrian" end end