2010-06-13 13:00:22 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Hatari < Formula
|
2012-02-18 12:50:05 +00:00
|
|
|
homepage 'http://hatari.tuxfamily.org'
|
2012-08-04 15:56:41 +00:00
|
|
|
url 'http://download.tuxfamily.org/hatari/1.6.2/hatari-1.6.2.tar.bz2'
|
|
|
|
sha1 'fce28eb59d7b1574537bfdba757fddc31534bb17'
|
2010-06-13 13:00:22 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'cmake' => :build
|
2010-06-13 13:00:22 +00:00
|
|
|
depends_on 'sdl'
|
|
|
|
|
|
|
|
def install
|
2012-02-18 12:50:05 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-osx-bundle"
|
2010-06-13 13:00:22 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|