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 <flangy@gmail.com>
This commit is contained in:
John Harrison 2012-07-22 23:14:17 -07:00 committed by Adam Vandenberg
parent c87d542cdd
commit f389a04778

29
Formula/rom-tools.rb Normal file
View file

@ -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