homebrew-core/Formula/widelands.rb
2018-04-17 03:38:31 -07:00

53 lines
1.6 KiB
Ruby

class Widelands < Formula
desc "Free real-time strategy game like Settlers II"
homepage "https://wl.widelands.org/"
url "https://launchpad.net/widelands/build19/build19/+download/widelands-build19-src.tar.bz2"
sha256 "e511f9d26828a2b71b64cdfc6674e6e847543b2da73961ab882acca36c7c01a6"
revision 10
bottle do
sha256 "e72bc4e255dc48c9a0dc066901b0efdaae326b22f8057061622a224fafbd7112" => :high_sierra
sha256 "ae23f5836cc6898cb9ee0582571d58a6cfcddd23951007a5ed40334da1cbf5b9" => :sierra
sha256 "be4f36e0ea0b262154c3cc879c4947be4c4d7c249ff73f483e9447b519c0eabf" => :el_capitan
end
depends_on "cmake" => :build
depends_on "boost"
depends_on "libpng"
depends_on "minizip"
depends_on "gettext"
depends_on "sdl2_image"
depends_on "sdl2_mixer"
depends_on "sdl2_net"
depends_on "sdl2_ttf"
depends_on "doxygen"
depends_on "glew"
depends_on "lua"
depends_on "icu4c"
needs :cxx11
def install
# icu4c 61.1 compatability
ENV.append "CXXFLAGS", "-DU_USING_ICU_NAMESPACE=1"
ENV.cxx11
mkdir "build" do
system "cmake", "..",
# Without the following option, Cmake intend to use the library of MONO framework.
"-DPNG_PNG_INCLUDE_DIR:PATH=#{Formula["libpng"].opt_include}",
"-DWL_INSTALL_DATADIR=#{pkgshare}/data",
*std_cmake_args
system "make", "install"
(bin/"widelands").write <<~EOS
#!/bin/sh
exec #{prefix}/widelands "$@"
EOS
end
end
test do
system bin/"widelands", "--version"
end
end