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

class Daq < Formula
  homepage 'http://www.snort.org/'
  url 'http://www.snort.org/dl/snort-current/daq-2.0.1.tar.gz'
  sha1 '63431274e868195a8c4efb064b204aa5a151d387'

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