homebrew-core/Formula/hatari.rb
Mathieu Deletrain 3f88c199b2 hatari: add --HEAD
Closes Homebrew/homebrew#19770.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-13 09:40:30 -07:00

17 lines
477 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'
head 'http://hg.tuxfamily.org/mercurialroot/hatari/hatari', :using => :hg, :branch => 'default'
depends_on 'cmake' => :build
depends_on 'sdl'
def install
system "./configure", "--prefix=#{prefix}", "--disable-osx-bundle"
system "make install"
end
end