homebrew-core/Formula/sdcc.rb
Mark L. Chang 93952fe62b changed to use 'make all'
make all builds all the microcontroller library files,
which is easier in the source tree than after the fact.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-15 08:59:06 -07:00

13 lines
330 B
Ruby

require 'formula'
class Sdcc <Formula
url 'http://downloads.sourceforge.net/project/sdcc/sdcc/2.9.0/sdcc-src-2.9.0.tar.bz2'
homepage 'http://sdcc.sourceforge.net/'
md5 'a6151ed328fd3bc48305ffbc628dc122'
def install
system "./configure", "--prefix=#{prefix}"
system "make all"
system "make install"
end
end