58 lines
1.8 KiB
Ruby
58 lines
1.8 KiB
Ruby
class Supertux < Formula
|
|
desc "Classic 2D jump'n run sidescroller game"
|
|
homepage "https://supertuxproject.org/"
|
|
url "https://github.com/SuperTux/supertux/releases/download/v0.5.1/SuperTux-v0.5.1-Source.tar.gz"
|
|
sha256 "c9dc3b42991ce5c5d0d0cb94e44c4ec2373ad09029940f0e92331e7e9ada0ac5"
|
|
revision 3
|
|
|
|
head "https://github.com/SuperTux/supertux.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "b2adbb17603f0027eff4e33a21d587d92190817d3a4ba8c85b408edd783edf39" => :sierra
|
|
sha256 "eda941a8dfa53421cab3e1760cccd11915897c42dc0a0ad5ad59aeadb8b6d0fc" => :el_capitan
|
|
sha256 "6a3a313ad4592b866dab92d916705c7ba7fbff224f9fb269a221293b89f9d3f0" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "boost" => :build
|
|
depends_on "sdl2"
|
|
depends_on "sdl2_image"
|
|
depends_on "sdl2_mixer"
|
|
depends_on "libogg"
|
|
depends_on "libvorbis"
|
|
depends_on "glew"
|
|
|
|
# Fix symlink passing to physfs
|
|
# https://github.com/SuperTux/supertux/issues/614
|
|
patch do
|
|
url "https://github.com/SuperTux/supertux/commit/47a353e2981161e2da12492822fe88d797af2fec.diff?full_index=1"
|
|
sha256 "2b12aeead4f425a0626051e246a9f6d527669624803d53d6d0b5758e51099059"
|
|
end
|
|
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11
|
|
|
|
args = std_cmake_args
|
|
args << "-DINSTALL_SUBDIR_BIN=bin"
|
|
args << "-DINSTALL_SUBDIR_SHARE=share/supertux"
|
|
# Without the following option, Cmake intend to use the library of MONO framework.
|
|
args << "-DPNG_PNG_INCLUDE_DIR=#{Formula["libpng"].opt_include}"
|
|
system "cmake", ".", *args
|
|
system "make", "install"
|
|
|
|
# Remove unnecessary files
|
|
(share/"appdata").rmtree
|
|
(share/"applications").rmtree
|
|
(share/"pixmaps").rmtree
|
|
(prefix/"MacOS").rmtree
|
|
end
|
|
|
|
test do
|
|
assert_equal "supertux2 v#{version}", shell_output("#{bin}/supertux2 --version").chomp
|
|
end
|
|
end
|