homebrew-core/Formula/sdcc.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

37 lines
1.3 KiB
Ruby

class Sdcc < Formula
desc "ANSI C compiler for Intel 8051, Maxim 80DS390, and Zilog Z80"
homepage "http://sdcc.sourceforge.net/"
url "https://downloads.sourceforge.net/project/sdcc/sdcc/3.4.0/sdcc-src-3.4.0.tar.bz2"
sha256 "cf6af862b94d5f259f11afa0a1b86304f3047b3723a9df96f20dba869deb5bf9"
head "https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc/"
depends_on "gputils"
depends_on "boost"
option "enable-avr-port", "Enables the AVR port (UNSUPPORTED, MAY FAIL)"
option "enable-xa51-port", "Enables the xa51 port (UNSUPPORTED, MAY FAIL)"
# SDCC Doesn't build huge-stack-auto by default for mcs51, but it
# is needed by Contiki and others. This simple patch enables it to build.
patch do
url "https://gist.githubusercontent.com/anonymous/5042275/raw/a2e084f29cd4ad9cd95e38683209991b7ac038d3/sdcc-huge-stack-auto.diff"
sha256 "4fa5bf4d3f8f57682246918a06eb780e163b7207dc2cad4133d4017ae892bf6a"
end
def install
args = ["--prefix=#{prefix}"]
args << "--enable-avr-port" if build.include? "enable-avr-port"
args << "--enable-xa51-port" if build.include? "enable-xa51-port"
system "./configure", *args
system "make", "all"
system "make", "install"
rm Dir["#{bin}/*.el"]
end
test do
system "#{bin}/sdcc", "-v"
end
end