56 lines
2.1 KiB
Ruby
56 lines
2.1 KiB
Ruby
class Openttd < Formula
|
|
desc "Simulation game based upon Transport Tycoon Deluxe"
|
|
homepage "https://www.openttd.org/"
|
|
url "https://binaries.openttd.org/releases/1.8.0/openttd-1.8.0-source.tar.xz"
|
|
sha256 "c2d32d9d736d27202a020027a3729ae763f5432ae6f424891e57a4095eeb087f"
|
|
head "https://git.openttd.org/openttd/trunk.git"
|
|
|
|
bottle do
|
|
sha256 "e5d194e126ec516ca84a4f9187e8415953cf64e319dfe31dedd1bdaa2a4e2339" => :high_sierra
|
|
sha256 "5d74a4c682236213f06a7cdeae2f62f462d59f445a66719fe86e82a872ff112e" => :sierra
|
|
sha256 "b2b8d6cf06c840acbf425d4b89daf146541d46f19cd3aa7f09a622d7897b3a9f" => :el_capitan
|
|
end
|
|
|
|
depends_on "lzo"
|
|
depends_on "xz"
|
|
depends_on "pkg-config" => :build
|
|
|
|
resource "opengfx" do
|
|
url "https://bundles.openttdcoop.org/opengfx/releases/0.5.4/opengfx-0.5.4.zip"
|
|
sha256 "3d136d776906dbe8b5df1434cb9a68d1249511a3c4cfaca55cc24cc0028ae078"
|
|
end
|
|
|
|
resource "opensfx" do
|
|
url "https://bundles.openttdcoop.org/opensfx/releases/0.2.3/opensfx-0.2.3.zip"
|
|
sha256 "3574745ac0c138bae53b56972591db8d778ad9faffd51deae37a48a563e71662"
|
|
end
|
|
|
|
resource "openmsx" do
|
|
url "https://bundles.openttdcoop.org/openmsx/releases/0.3.1/openmsx-0.3.1.zip"
|
|
sha256 "92e293ae89f13ad679f43185e83fb81fb8cad47fe63f4af3d3d9f955130460f5"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix-dir=#{prefix}"
|
|
system "make", "bundle"
|
|
|
|
(buildpath/"bundle/OpenTTD.app/Contents/Resources/data/opengfx").install resource("opengfx")
|
|
(buildpath/"bundle/OpenTTD.app/Contents/Resources/data/opensfx").install resource("opensfx")
|
|
(buildpath/"bundle/OpenTTD.app/Contents/Resources/gm/openmsx").install resource("openmsx")
|
|
|
|
prefix.install "bundle/OpenTTD.app"
|
|
bin.write_exec_script "#{prefix}/OpenTTD.app/Contents/MacOS/openttd"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
If you have access to the sound and graphics files from the original
|
|
Transport Tycoon Deluxe, you can install them by following the
|
|
instructions in section 4.1 of #{prefix}/readme.txt
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match /OpenTTD #{version}\n/, shell_output("#{bin}/openttd -h")
|
|
end
|
|
end
|