homebrew-core/Formula/clamav.rb

13 lines
338 B
Ruby
Raw Normal View History

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