From f389a047789ae508e458f22d2de73fee1c11bd41 Mon Sep 17 00:00:00 2001 From: John Harrison Date: Sun, 22 Jul 2012 23:14:17 -0700 Subject: [PATCH] rom-tool 146u3 The rom-tools are extra's that come with both MESS and MAME. They can be used to manage, extend, create and modify ROMS and other MAME/MESS support files. Signed-off-by: Adam Vandenberg --- Formula/rom-tools.rb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Formula/rom-tools.rb diff --git a/Formula/rom-tools.rb b/Formula/rom-tools.rb new file mode 100644 index 0000000000..78609e5007 --- /dev/null +++ b/Formula/rom-tools.rb @@ -0,0 +1,29 @@ +require 'formula' + +class RomTools < Formula + homepage 'http://www.mess.org/' + url 'svn://messdev.no-ip.org/mess', :revision => 15603 + version '146u3' + + head 'svn://messdev.no-ip.org/mess' + + depends_on :x11 + depends_on 'sdl' + + def install + ENV['MACOSX_USE_LIBSDL'] = '1' + ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS.x11_prefix}/include" + ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0') + + system 'make romcmp' + system 'make jedutil' + system 'make chdman' + system 'make tools' + + bin.install %W[ + castool chdman floptool imgtool jedutil ldresample ldverify regreg + romcmp src2htm srcclean testkeys unidasm' + ] + bin.install 'split' => 'rom-split' + end +end