homebrew-core/Formula/clamav.rb

13 lines
359 B
Ruby
Raw Normal View History

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