aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dasm.rb
blob: d2d960fbce08fcd35c3dffbd83cb328677065c2a (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
30
31
32
33
require 'formula'

class Dasm < Formula
  homepage 'http://dasm-dillon.sourceforge.net'
  url 'https://downloads.sourceforge.net/project/dasm-dillon/dasm-dillon/2.20.11/dasm-2.20.11-2014.03.04-source.tar.gz'
  sha1 '2ce78b29505b31778b8f796ba4b161b9f890e77e'
  head 'svn://svn.code.sf.net/p/dasm-dillon/code/trunk'

  bottle do
    cellar :any
    sha1 "16a36f8d3d57693ea2b2fea55ab264e538ddcfaf" => :mavericks
    sha1 "5bf2a732a5e3d3b9963ad405c6b526b0a9cb74d0" => :mountain_lion
    sha1 "14895b0dee0237dec3cc7cedafeba2fdb4b88bad" => :lion
  end

  def install
    system "make"
    prefix.install 'bin', 'doc'
  end

  test do
    path = testpath/"a.asm"
    path.write <<-EOS
      processor 6502
      org $c000
      jmp $fce2
    EOS

    system bin/"dasm", path
    code = (testpath/"a.out").binread.unpack("C*")
    assert_equal [0x00, 0xc0, 0x4c, 0xe2, 0xfc], code
  end
end