homebrew-core/Formula/ufoai.rb
2017-02-08 10:12:34 +00:00

63 lines
1.9 KiB
Ruby

class Ufoai < Formula
desc "UFO: Alien Invasion"
homepage "http://ufoai.org/"
url "git://git.code.sf.net/p/ufoai/code", :branch => "ufoai_2.5", :revision => "3e28f7cbf9f5e1cfd0fa7fdc852f833e498757c1"
version "2.5.0+20150216"
bottle do
sha256 "300bb5018f23a611b94b7a24803488a1bab5016374f10b40acd211192fef3383" => :sierra
sha256 "b44b1699fe48d50f9e46c50cbe4beeeacca20cea57e4a0ddd2807161e1b60b7d" => :el_capitan
sha256 "6132d7c71ba7a523873a0325ac3368cbd35e739a23427aebe318c307657955ba" => :yosemite
end
depends_on "pkg-config" => :build
depends_on "sdl2"
depends_on "sdl2_ttf"
depends_on "sdl2_mixer" => "with-libvorbis"
depends_on "jpeg"
depends_on "libpng"
depends_on "xvid"
depends_on "theora"
depends_on "gettext"
resource "data" do
url "https://downloads.sourceforge.net/project/ufoai/UFO_AI%202.x/2.5/ufoai-2.5-data.tar"
sha256 "5e706a424aff6a2ea30a4c798129d6304e897387eadf808528129b512b7dcdb0"
end
def install
ENV.deparallelize
ENV["TARGET_ARCH"] = MacOS.preferred_arch.to_s
(buildpath/"base").install resource("data")
inreplace "build/install_mac.mk" do |s|
s.gsub! /.*\$\(BINARIES_BASE\).*/, ""
s.gsub! /\s+copylibs-ufoai/, ""
s.gsub! /.*hdiutil.*/, ""
end
inreplace "build/modes/release.mk", /-falign-(loops|jumps)=\d+/, "" unless ENV.compiler == :gcc
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--enable-hardlinkedgame
--enable-release
]
system "./configure", *args
system "make"
system "make", "lang"
system "make", "create-dmg-ufoai"
prefix.install Dir["contrib/installer/mac/ufoai-**/UFOAI.app"]
bin.write_exec_script "#{prefix}/UFOAI.app/Contents/MacOS/ufo"
end
def caveats; <<-EOS.undent
Turn off GLSL shaders from video settings if you have graphics problem.
EOS
end
test do
system "#{bin}/ufo", "+set", "vid_fullscreen", "0", "+quit"
end
end