aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/exult.rb
blob: 9eb4d22b98431d5affbca5baa2698db725fe5b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require 'formula'

# TODO we shouldn't be installing .apps if there is an option

class Exult <Formula
  # Use a specific revision that is known to compile (on Snow Leopard too.)
  head 'http://exult.svn.sourceforge.net/svnroot/exult/exult/trunk', :revision => '6128'
  homepage 'http://exult.sourceforge.net/'
  
  depends_on 'sdl'
  depends_on 'sdl_mixer'
  
  def install
    # Yes, really. Goddamnit.
    inreplace "autogen.sh", "libtoolize", "glibtoolize"
    
    system "./autogen.sh"
    system "./configure", "--prefix=#{prefix}",
                          "--disable-debug",
                          "--disable-dependency-tracking",
                          "--disable-sdltest"
                          
    system "make"
    system "make bundle"
    prefix.install "Exult.app"
  end
  
  def caveats;
    "Cocoa app installed to #{prefix}\n\n"\
    "Note that this includes only the game engine; you will need to supply your own\n"\
    "own legal copy of the Ultima 7 game files. Try here:\n\n"\
    "http://www.amazon.com/gp/product/B0002SKOEC?ie=UTF8&tag=adamvandesper-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=B0002SKOEC"
  end
end