aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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