homebrew-core/Formula/hatari.rb
Trevor Wennblom 5bcf8891be hatari 1.5.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-30 13:52:13 -07:00

15 lines
377 B
Ruby

require 'formula'
class Hatari < Formula
url 'http://download.berlios.de/hatari/hatari-1.5.0.tar.bz2'
homepage 'http://hatari.berlios.de/'
md5 '16277cff73ec3a342b87b7b7ea3932f4'
depends_on 'cmake' => :build
depends_on 'sdl'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}", "--disable-osx-bundle"
system "make install"
end
end