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:
parent
c87d542cdd
commit
f389a04778
1 changed files with 29 additions and 0 deletions
29
Formula/rom-tools.rb
Normal file
29
Formula/rom-tools.rb
Normal 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
|
Loading…
Reference in a new issue