aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorFabio Utzig2011-01-23 22:38:07 -0200
committerAdam Vandenberg2011-01-23 18:03:45 -0800
commit6c20933be22b6cc54a515d46dd04d847076fd8f6 (patch)
tree0f501b907a07453cacba46a4944180f725b7214e /Library/Formula
parentab4cbf481bd03b2fa3cc7d61f770152d86477f4f (diff)
downloadhomebrew-6c20933be22b6cc54a515d46dd04d847076fd8f6.tar.bz2
Updated sdcc to version 3.0.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sdcc.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/sdcc.rb b/Library/Formula/sdcc.rb
index 44844a0f8..b86cb67a4 100644
--- a/Library/Formula/sdcc.rb
+++ b/Library/Formula/sdcc.rb
@@ -1,12 +1,14 @@
require 'formula'
class Sdcc <Formula
- url 'http://downloads.sourceforge.net/project/sdcc/sdcc/2.9.0/sdcc-src-2.9.0.tar.bz2'
+ url 'http://downloads.sourceforge.net/project/sdcc/sdcc/3.0.0/sdcc-src-3.0.0.tar.bz2'
homepage 'http://sdcc.sourceforge.net/'
- md5 'a6151ed328fd3bc48305ffbc628dc122'
+ md5 '20fbd49a3421e09fe65577c45524c89e'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix=#{prefix}",
+ "--enable-avr-port",
+ "--enable-xa51-port"
system "make all"
system "make install"
end