New formula hatari

Hatari is an Atari ST/STE/TT/Falcon emulator for GNU/Linux, BSD, Mac OS X,
Windows and other systems which are supported by the SDL library.
master
David Höppner 2010-06-13 15:00:22 +02:00
parent 51a4c1098d
commit 0834e8a84a
1 changed files with 15 additions and 0 deletions

15
Formula/hatari.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Hatari <Formula
url 'http://download.berlios.de/hatari/hatari-1.4.0.tar.bz2'
homepage 'http://hatari.berlios.de/'
md5 '2f30e5c9e146ee92e3f2f5ae1cef3673'
depends_on 'cmake'
depends_on 'sdl'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}", "--disable-osx-bundle"
system "make install"
end
end