homebrew-core/Formula/rom-tools.rb
John Harrison f389a04778 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>
2012-07-23 21:23:18 -07:00

29 lines
702 B
Ruby

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