blob: b02654cb38fc8b62a8228d1e378bb9b10132ec69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Hatari < Formula
homepage 'http://hatari.tuxfamily.org'
url 'http://download.tuxfamily.org/hatari/1.6.2/hatari-1.6.2.tar.bz2'
sha1 'fce28eb59d7b1574537bfdba757fddc31534bb17'
depends_on 'cmake' => :build
depends_on 'sdl'
def install
system "./configure", "--prefix=#{prefix}", "--disable-osx-bundle"
system "make install"
end
end
|