73 lines
2.3 KiB
Ruby
73 lines
2.3 KiB
Ruby
class Minetest < Formula
|
|
desc "Free, open source voxel game engine and game"
|
|
homepage "https://www.minetest.net/"
|
|
license "LGPL-2.1"
|
|
|
|
stable do
|
|
url "https://github.com/minetest/minetest/archive/5.3.0.tar.gz"
|
|
sha256 "65dc2049f24c93fa544500f310a61e289c1b8fa47bf60877b746a2c27a7238d6"
|
|
|
|
resource "minetest_game" do
|
|
url "https://github.com/minetest/minetest_game/archive/5.3.0.tar.gz"
|
|
sha256 "06c6c1d4b97af211dd0fa518a3e68a205f594e9816a4b2477e48d4d21d278e2d"
|
|
end
|
|
end
|
|
|
|
livecheck do
|
|
url "https://github.com/minetest/minetest/releases/latest"
|
|
regex(%r{href=.*?/tag/v?(\d+(?:\.\d+)+)["' >]}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 "4442b3b3093e256ba969209a654394ca82de909b1f2b182ff690b543741277c6" => :catalina
|
|
sha256 "e00fbd45f80e2527940738850f7841c0627704f05bfb15ca8cc02e1fa16d3b34" => :mojave
|
|
sha256 "f75c155307545d8627d676182c4b175dfeaeeeda87d50e893f50b58feedbdfeb" => :high_sierra
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/minetest/minetest.git"
|
|
|
|
resource "minetest_game" do
|
|
url "https://github.com/minetest/minetest_game.git", branch: "master"
|
|
end
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "freetype"
|
|
depends_on "gettext"
|
|
depends_on "irrlicht"
|
|
depends_on "jpeg"
|
|
depends_on "libogg"
|
|
depends_on "libvorbis"
|
|
depends_on "luajit"
|
|
|
|
def install
|
|
(buildpath/"games/minetest_game").install resource("minetest_game")
|
|
|
|
args = std_cmake_args - %w[-DCMAKE_BUILD_TYPE=None]
|
|
args << "-DCMAKE_BUILD_TYPE=Release" << "-DBUILD_CLIENT=1" << "-DBUILD_SERVER=0"
|
|
args << "-DENABLE_FREETYPE=1" << "-DCMAKE_EXE_LINKER_FLAGS='-L#{Formula["freetype"].opt_lib}'"
|
|
args << "-DENABLE_GETTEXT=1" << "-DCUSTOM_GETTEXT_PATH=#{Formula["gettext"].opt_prefix}"
|
|
|
|
system "cmake", ".", *args
|
|
system "make", "package"
|
|
system "unzip", "minetest-*-osx.zip"
|
|
prefix.install "minetest.app"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Put additional subgames and mods into "games" and "mods" folders under
|
|
"~/Library/Application Support/minetest/", respectively (you may have
|
|
to create those folders first).
|
|
|
|
If you would like to start the Minetest server from a terminal, run
|
|
"#{prefix}/minetest.app/Contents/MacOS/minetest --server".
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{prefix}/minetest.app/Contents/MacOS/minetest", "--version"
|
|
end
|
|
end
|