947ad6d3a2
Closes Homebrew/homebrew#13947. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
378 B
Ruby
15 lines
378 B
Ruby
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
|