blob: 66898bfc6ff16e89a357ca62f6961407d4d384f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
require 'formula'
class Tcpflow < Formula
homepage 'https://github.com/simsong/tcpflow'
url 'http://www.digitalcorpora.org/downloads/tcpflow/tcpflow-1.4.4.tar.gz'
sha1 'e4bc5ad08a81a39943bd1c799edefcdee09de784'
head do
url 'https://github.com/simsong/tcpflow.git'
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
depends_on 'boost' => :build
depends_on 'sqlite' if MacOS.version < :lion
# Upstream fix for 10.6; can be removed in next release
patch do
url "https://github.com/simsong/tcpflow/commit/1cd5a9168c2ebf72c1fadcd64634398bd8470bce.diff"
sha1 "5264d287a5e62b647da0aa6f2bfa237bc8171c3a"
end
def install
system "bash", "./bootstrap.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|