aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/exult.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/exult.rb')
-rwxr-xr-xLibrary/Formula/exult.rb24
1 files changed, 14 insertions, 10 deletions
diff --git a/Library/Formula/exult.rb b/Library/Formula/exult.rb
index ea312e339..bff21f212 100755
--- a/Library/Formula/exult.rb
+++ b/Library/Formula/exult.rb
@@ -1,9 +1,10 @@
require 'formula'
class Exult <Formula
- head 'http://exult.svn.sourceforge.net/svnroot/exult/exult/trunk',
- :revision => '6317'
+ url 'http://exult.svn.sourceforge.net/svnroot/exult/exult/trunk', :revision => '6317'
homepage 'http://exult.sourceforge.net/'
+ version '1.4pre'
+ head 'http://exult.svn.sourceforge.net/svnroot/exult/exult/trunk'
depends_on 'sdl'
depends_on 'sdl_mixer'
@@ -14,9 +15,8 @@ class Exult <Formula
inreplace "autogen.sh", "libtoolize", "glibtoolize"
system "./autogen.sh"
- system "./configure", "--prefix=#{prefix}",
- "--disable-debug",
- "--disable-dependency-tracking",
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
"--disable-sdltest"
system "make"
@@ -24,10 +24,14 @@ class Exult <Formula
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 (Amazon.com):\n\n"\
- "http://bit.ly/8JzovU"
+ def caveats
+ <<-EOS.undent
+ Cocoa app installed to:
+ #{prefix}
+
+ Note that this includes only the game engine; you will need to supply your own
+ own legal copy of the Ultima 7 game files. Try here (Amazon.com):
+ http://bit.ly/8JzovU
+ EOS
end
end