blob: 85edef41ac97f4fb7bbbe9163ee8465f3ea695e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|