homebrew-core/Formula/clamav.rb
Will Tisdale 87fe50fc9a Updated to Clamav 0.96.2
Signed-off-by: David Höppner <0xffea@gmail.com>
2010-08-26 18:54:47 +02:00

12 lines
359 B
Ruby

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