homebrew-core/Formula/clamav.rb

13 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