aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2010-06-13 15:00:22 +0200
committerDavid Höppner2010-06-13 15:00:22 +0200
commit86155ce0c25ad9339bdea96bd4f1cfa01d97563c (patch)
treec3bfcfde3bd5aef4ba30126fd4e7b081159c588c /Library
parent3b5ab61755d9fb90781d4a4f0f97b9ae21f701bc (diff)
downloadhomebrew-86155ce0c25ad9339bdea96bd4f1cfa01d97563c.tar.bz2
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.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/hatari.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/hatari.rb b/Library/Formula/hatari.rb
new file mode 100644
index 000000000..7fb22905e
--- /dev/null
+++ b/Library/Formula/hatari.rb
@@ -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