blob: 5ccc1f3ea4fd6818cd35e46739450566fcdb2f06 (
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.2.tar.gz'
  sha1 'def1a5b28fd16758aeb85a02f3813250014d4d75'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |