homebrew-core/Formula/avra.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

class Avra < Formula
desc "Assember for the Atmel AVR microcontroller family"
homepage "http://avra.sourceforge.net/"
url "https://downloads.sourceforge.net/project/avra/1.3.0/avra-1.3.0.tar.bz2"
sha256 "a62cbf8662caf9cc4e75da6c634efce402778639202a65eb2d149002c1049712"
2014-12-27 18:35:58 +00:00
bottle do
cellar :any
sha1 "e2421ffa73e2cce740fdf6d03083931511ba729c" => :yosemite
sha1 "93af396271220b7b110c8506affea3703c914482" => :mavericks
sha1 "9a850a1c6ca9634a2a8e33b1f399d272cf2c78ee" => :mountain_lion
end
2014-12-04 22:38:00 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
def install
# build fails if these don't exist
touch "NEWS"
touch "ChangeLog"
cd "src" do
2011-10-18 17:01:52 +00:00
system "./bootstrap"
system "./configure", "--prefix=#{prefix}"
system "make", "install"
2011-10-18 17:01:52 +00:00
end
2014-12-27 17:06:13 +00:00
(share/"avra").install Dir["includes/*"]
end
test do
(testpath/"test.asm").write " .device attiny10\n ldi r16,0x42\n"
2014-05-04 19:12:41 +00:00
output = shell_output("#{bin}/avra -l test.lst test.asm")
assert_match "Assembly complete with no errors.", output
assert File.exist?("test.hex")
assert_match "ldi r16,0x42", File.read("test.lst")
end
end