homebrew-core/Formula/clamav.rb

24 lines
590 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Clamav < Formula
2010-04-02 17:11:36 +00:00
homepage 'http://www.clamav.net/'
url 'http://downloads.sourceforge.net/clamav/0.98/clamav-0.98.tar.gz'
sha1 '1e6a7284721387646c713a8d32fa8b5a897985db'
skip_clean 'share'
def install
(share/'clamav').mkpath
2012-08-31 19:24:38 +00:00
args = %W{--disable-dependency-tracking
--prefix=#{prefix}
--disable-zlib-vcheck
--libdir=#{lib}
--sysconfdir=#{etc}}
2012-08-31 19:24:38 +00:00
args << "--with-zlib=#{MacOS.sdk_path}/usr" unless MacOS::CLT.installed?
system "./configure", *args
system "make install"
end
end