blob: d6118c09e3f86acaf0750093b9c480297c0f7a42 (
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
34
35
36
37
 | require 'formula'
class Avra < Formula
  homepage 'http://avra.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/avra/1.3.0/avra-1.3.0.tar.bz2'
  sha1 '7ad7d168b02107d4f2d72951155798c2fd87d5a9'
  bottle do
    cellar :any
    sha1 "e2421ffa73e2cce740fdf6d03083931511ba729c" => :yosemite
    sha1 "93af396271220b7b110c8506affea3703c914482" => :mavericks
    sha1 "9a850a1c6ca9634a2a8e33b1f399d272cf2c78ee" => :mountain_lion
  end
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  def install
    # build fails if these don't exist
    touch 'NEWS'
    touch 'ChangeLog'
    cd "src" do
      system "./bootstrap"
      system "./configure", "--prefix=#{prefix}"
      system "make install"
    end
    (share/"avra").install Dir["includes/*"]
  end
  test do
    (testpath/"test.asm").write " .device attiny10\n ldi r16,0x42\n"
    output = shell_output("#{bin}/avra -l test.lst test.asm")
    assert output.include?("Assembly complete with no errors.")
    assert File.exist?("test.hex")
    assert File.read("test.lst").include?("ldi r16,0x42")
  end
end
 |