From 539dfbef468220c359766f8c2a463ffc07403e6c Mon Sep 17 00:00:00 2001 From: Jochen Schäfer Date: Mon, 11 Feb 2013 19:41:58 +0100 Subject: atari++ 1.71 Closes #17766. Signed-off-by: Adam Vandenberg --- Library/Formula/atari++.rb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Library/Formula/atari++.rb (limited to 'Library/Formula/atari++.rb') diff --git a/Library/Formula/atari++.rb b/Library/Formula/atari++.rb new file mode 100644 index 000000000..85edef41a --- /dev/null +++ b/Library/Formula/atari++.rb @@ -0,0 +1,22 @@ +require 'formula' + +class Atarixx < Formula + homepage 'http://www.xl-project.com' + url 'http://www.xl-project.com/download/atari++_1.71.tar.gz' + sha1 '6d18494068bf491077cff32de514a1118bb133b1' + + option 'with-curses' + + depends_on :x11 + depends_on 'sdl' => :recommended + + def install + args = ["--prefix=#{prefix}"] + args << "--disable-CURSES" unless build.include? 'with-curses' + args << "--disable-SDL" unless build.include? 'with-sdl' + + system "./configure", *args + system "make" + system "make install" + end +end -- cgit v1.2.3