diff options
| author | Fabio Utzig | 2010-06-28 18:33:12 -0300 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-28 14:42:52 -0700 |
| commit | 82cdf33935941fabdc81dfd983b84b4726573927 (patch) | |
| tree | be65788c9a8903c82f840edbb7d455fbded163a1 /Library/Formula | |
| parent | b08d4730b0ffa83684615629f52146901b0ed8e6 (diff) | |
| download | homebrew-82cdf33935941fabdc81dfd983b84b4726573927.tar.bz2 | |
Updated sdcc to 2.9.0 and fixed build
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/sdcc.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/sdcc.rb b/Library/Formula/sdcc.rb index 620569ed9..57bd4c2cb 100644 --- a/Library/Formula/sdcc.rb +++ b/Library/Formula/sdcc.rb @@ -1,14 +1,13 @@ require 'formula' class Sdcc <Formula - url 'http://downloads.sourceforge.net/project/sdcc/sdcc/2.8.0/sdcc-src-2.8.0.tar.bz2' + url 'http://downloads.sourceforge.net/project/sdcc/sdcc/2.9.0/sdcc-src-2.9.0.tar.bz2' homepage 'http://sdcc.sourceforge.net/' - md5 '1b9c2e581b92d5e3f13bca37c5784080' + md5 'a6151ed328fd3bc48305ffbc628dc122' def install - ENV.O3 # You don't want to see what happens with -O4. - - system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "./configure", "--prefix=#{prefix}" + system "make" system "make install" end end |
