2010-03-17 15:48:11 +00:00
|
|
|
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/'
|
2012-11-04 17:07:52 +00:00
|
|
|
url 'http://downloads.sourceforge.net/clamav/clamav-0.97.6.tar.gz'
|
|
|
|
sha1 '528f774b14b95fdfb8b377f8b41859c48b165e34'
|
2010-03-17 15:48:11 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-31 19:24:38 +00:00
|
|
|
args = %W{--disable-dependency-tracking
|
|
|
|
--prefix=#{prefix}
|
2012-09-03 03:12:49 +00:00
|
|
|
--disable-zlib-vcheck
|
|
|
|
--libdir=#{lib}}
|
2012-08-31 19:24:38 +00:00
|
|
|
args << "--with-zlib=#{MacOS.sdk_path}/usr" unless MacOS::CLT.installed?
|
|
|
|
|
|
|
|
system "./configure", *args
|
2010-03-17 15:48:11 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|