homebrew-core/Formula/clamav.rb
Michael Dippery 4b3bf17075 clamav: Update to 0.96.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-10-27 11:51:12 -07:00

12 lines
337 B
Ruby

require 'formula'
class Clamav <Formula
url 'http://downloads.sourceforge.net/clamav/clamav-0.96.4.tar.gz'
homepage 'http://www.clamav.net/'
md5 '7d47f73fe16b96544a4b5e41686e5060'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end