class Exult < Formula desc "Recreation of Ultima 7" homepage "https://exult.sourceforge.io/" url "svn://svn.code.sf.net/p/exult/code/exult/trunk", :revision => 7520 version "1.4.9rc1+r7520" head "svn://svn.code.sf.net/p/exult/code/exult/trunk" bottle do sha256 "903c0ab936349d37871b211146ffee34e7471ba8c0230cc81b583f67003bf7d0" => :sierra sha256 "e7359d920d31832d74a01e3fa367d65065fa0c9c921534732d947eb968173d3a" => :el_capitan sha256 "5fdcf6dd02cd1fef6863e30ed382b23391ebba2ebd06a34b991c88f4238a559e" => :yosemite end option "with-audio-pack", "Install audio pack" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "pkg-config" => :build depends_on "sdl2" depends_on "libogg" depends_on "libvorbis" resource "audio" do url "https://downloads.sourceforge.net/project/exult/exult-data/exult_audio.zip" sha256 "72e10efa8664a645470ceb99f6b749ce99c3d5fd1c8387c63640499cfcdbbc68" end def install # Use ~/Library/... instead of /Library for the games inreplace "files/utils.cc" do |s| s.gsub! /(gamehome_dir)\("\."\)/, '\1(home_dir)' s.gsub! /(gamehome_dir) =/, '\1 +=' end system "./autogen.sh" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make", "EXULT_DATADIR=#{pkgshare}/data" system "make", "bundle" pkgshare.install "Exult.app/Contents/Resources/data" (pkgshare/"data").install resource("audio") if build.with? "audio-pack" prefix.install "Exult.app" bin.write_exec_script "#{prefix}/Exult.app/Contents/MacOS/exult" end def caveats; <<-EOS.undent 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 Update audio settings accordingly with configuration file: ~/Library/Preferences/exult.cfg To use CoreAudio, set `driver` to `CoreAudio`. To use audio pack, set `use_oggs` to `yes`. EOS end test do system "#{bin}/exult", "-v" end end