blob: fb64d64646004a3b6b46c2756c69d837534d86ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|