Created
September 22, 2014 22:31
-
-
Save tdsmith/4202d11b4ff80dfbb40d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "formula" | |
class Hatari < Formula | |
homepage "http://hatari.tuxfamily.org" | |
head "http://hg.tuxfamily.org/mercurialroot/hatari/hatari", :using => :hg, :branch => "default" | |
url "http://download.tuxfamily.org/hatari/1.8.0/hatari-1.8.0.tar.bz2" | |
sha1 "08d950c3156c764b87ac0ae03c4f350febff9567" | |
depends_on :x11 | |
depends_on "cmake" => :build | |
depends_on "libpng" | |
depends_on "sdl" | |
def install | |
ENV["SDLDIR"] = Formula["sdl"].opt_prefix | |
system "./configure", "--prefix=#{prefix}", "--disable-osx-bundle" | |
system "make install" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment