clamav 0.97.4

Upgrade clamav to version 0.97.4.  If check is installed, this
will pass all its self tests using clang or llvm from XC-4.3.2.
Remove the --disable-debug, which is the default behavior.

Closes Homebrew/homebrew#11840.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
nibbles 2bits 2012-04-23 14:38:46 -07:00 committed by Jack Nagel
parent 7abbd6896f
commit 4d069eb3bb

View file

@ -1,12 +1,12 @@
require 'formula' require 'formula'
class Clamav < Formula class Clamav < Formula
url 'http://downloads.sourceforge.net/clamav/clamav-0.97.3.tar.gz'
homepage 'http://www.clamav.net/' homepage 'http://www.clamav.net/'
md5 '5cf25ed7778fa0cb6b140ad8f009befb' url 'http://downloads.sourceforge.net/clamav/clamav-0.97.4.tar.gz'
sha1 '56f90cf8a73acba8f97beca86b42c65c3923935d'
def install def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install" system "make install"
end end
end end