homebrew-core/Formula/clamav.rb
Mark A. Matienzo c95f804604 clamav 0.97.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-07 10:19:51 -08:00

12 lines
338 B
Ruby

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