diff options
| author | Brett Koonce | 2014-04-26 10:05:12 -0500 | 
|---|---|---|
| committer | Brett Koonce | 2014-04-26 10:24:51 -0500 | 
| commit | ddb07c3fce4cb24df110917146cd9a726d318c15 (patch) | |
| tree | b71923cbadcc89da220487699af94a3201185f9f | |
| parent | e4a91c3f2f43de746fa68f46b7ecb3abfcc7862a (diff) | |
| download | homebrew-ddb07c3fce4cb24df110917146cd9a726d318c15.tar.bz2 | |
sdcc: 3.4.0, re-enable sdcdb
Added rm *.el tweak to pass audit.
Closes #28725.
Closes #28738.
| -rw-r--r-- | Library/Formula/sdcc.rb | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/Library/Formula/sdcc.rb b/Library/Formula/sdcc.rb index c2c68674f..d239c5343 100644 --- a/Library/Formula/sdcc.rb +++ b/Library/Formula/sdcc.rb @@ -2,8 +2,8 @@ require 'formula'  class Sdcc < Formula    homepage 'http://sdcc.sourceforge.net/' -  url 'https://downloads.sourceforge.net/project/sdcc/sdcc/3.3.0/sdcc-src-3.3.0.tar.bz2' -  sha1 'beed1b8c73f13344e018f48b1563ff2a948b70cf' +  url 'https://downloads.sourceforge.net/project/sdcc/sdcc/3.4.0/sdcc-src-3.4.0.tar.bz2' +  sha1 '469649acbd22376933154ab1e16d0a59806594c4'    head 'https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc/' @@ -21,7 +21,7 @@ class Sdcc < Formula    end    def install -    args = ["--prefix=#{prefix}", '--disable-sdcdb'] +    args = ["--prefix=#{prefix}"]      args << '--enable-avr-port' if build.include? 'enable-avr-port'      args << '--enable-xa51-port' if build.include? 'enable-xa51-port' @@ -29,6 +29,7 @@ class Sdcc < Formula      system "./configure", *args      system "make all"      system "make install" +    rm Dir["#{bin}/*.el"]    end    test do | 
