homebrew-core/Formula/clamav.rb
sowawa ( Keisuke SOGAWA ) 5cf232be1e clamav 0.97.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-15 20:16:14 -07:00

12 lines
338 B
Ruby

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