aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rom-tools.rb
blob: 3e5df4b00553e4894995f0cecf0094a6089c68f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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.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