aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/clamav.rb
blob: a2d893b465eb3f4c6fd5160e61fa017a89480eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Clamav < Formula
  url 'http://downloads.sourceforge.net/clamav/clamav-0.97.1.tar.gz'
  homepage 'http://www.clamav.net/'
  md5 '4f3fb74ff1098c25eef8e10721478c29'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end