aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bgrep.rb
blob: 0f4445695826ed17895bcbcaa87387523f3cc24c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Bgrep < Formula
  homepage 'https://github.com/tmbinc/bgrep'
  url 'https://github.com/tmbinc/bgrep/archive/bgrep-0.2.tar.gz'
  sha1 '37f29f95397730dcd8760a0bac33ba167ac7d998'

  def install
    system "#{ENV.cc} #{ENV.cflags} -o bgrep bgrep.c"
    bin.install "bgrep"
  end

  test do
    path = testpath/"hi.prg"
    path.binwrite [0x00, 0xc0, 0xa9, 0x48, 0x20, 0xd2, 0xff,
                   0xa9, 0x49, 0x20, 0xd2, 0xff, 0x60].pack("C*")

    assert_equal ["#{path}: 00000004", "#{path}: 00000009"],
                 shell_output("#{bin}/bgrep 20d2ff #{path}").split("\n")
  end
end