50 lines
1.6 KiB
Ruby
50 lines
1.6 KiB
Ruby
class Openmsx < Formula
|
|
desc "MSX emulator"
|
|
homepage "http://openmsx.org/"
|
|
url "https://github.com/openMSX/openMSX/releases/download/RELEASE_0_13_0/openmsx-0.13.0.tar.gz"
|
|
sha256 "41e37c938be6fc9f90659f8808418133601a85475058725d3e0dccf2902e62cb"
|
|
head "https://github.com/openMSX/openMSX.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "587193c0792a28ff7d94f0fe2cdc3e724991bb07f871a3337c268efc0482cae0" => :sierra
|
|
sha256 "d72bf6eb5aa50f118374e27a698a7481437e2ac8df368844976c7317214aba66" => :el_capitan
|
|
sha256 "340fe139996bbd87274788932db4d3e64dcdc4f2f969fc405b58c6e16f7fe120" => :yosemite
|
|
end
|
|
|
|
deprecated_option "without-opengl" => "without-glew"
|
|
|
|
option "without-glew", "Disable OpenGL post-processing renderer"
|
|
option "with-laserdisc", "Enable Laserdisc support"
|
|
|
|
depends_on "sdl"
|
|
depends_on "sdl_ttf"
|
|
depends_on "freetype"
|
|
depends_on "libpng"
|
|
depends_on "glew" => :recommended
|
|
|
|
if build.with? "laserdisc"
|
|
depends_on "libogg"
|
|
depends_on "libvorbis"
|
|
depends_on "theora"
|
|
end
|
|
|
|
def install
|
|
# Fixes a clang crash; this is an LLVM/Apple bug, not an openmsx bug
|
|
# https://github.com/Homebrew/homebrew-core/pull/9753
|
|
# Filed with Apple: rdar://30475877
|
|
ENV.O0
|
|
|
|
inreplace "build/custom.mk", "/opt/openMSX", prefix
|
|
# Help finding Tcl
|
|
inreplace "build/libraries.py", /\((distroRoot), \)/, "(\\1, '/usr', '#{MacOS.sdk_path}/usr')"
|
|
system "./configure"
|
|
system "make"
|
|
prefix.install Dir["derived/**/openMSX.app"]
|
|
bin.write_exec_script "#{prefix}/openMSX.app/Contents/MacOS/openmsx"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/openmsx", "-testconfig"
|
|
end
|
|
end
|