4d069eb3bb
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>
12 lines
328 B
Ruby
12 lines
328 B
Ruby
require 'formula'
|
|
|
|
class Clamav < Formula
|
|
homepage 'http://www.clamav.net/'
|
|
url 'http://downloads.sourceforge.net/clamav/clamav-0.97.4.tar.gz'
|
|
sha1 '56f90cf8a73acba8f97beca86b42c65c3923935d'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|