blob: f388336a13e09224d803bce5a27d06bcdb8a3e30 (
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
|
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
def install
system "bash", "./bootstrap.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|