homebrew-core/Formula/avra.rb
2014-12-27 20:05:03 +00:00

37 lines
1.1 KiB
Ruby

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