aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/knock.rb
blob: 0fef6adda38771514876dafe30cc07f820da6e51 (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
class Knock < Formula
  homepage "http://www.zeroflux.org/projects/knock"
  url "http://www.zeroflux.org/proj/knock/files/knock-0.7.tar.gz"
  sha1 "186a687c9db11733cf23a7423884a863873ebb27"

  bottle do
    cellar :any
    sha1 "e81973835ea940928a166c0edc2c405fe8a6cac5" => :yosemite
    sha1 "df0459ca7e7f8b18cd719e333c7a016f130c2e88" => :mavericks
    sha1 "ab688df7694977ee058159505c2b3f674df31fc4" => :mountain_lion
  end

  head do
    url "https://github.com/jvinet/knock.git"

    depends_on "autoconf" => :build
    depends_on "automake" => :build
  end

  def install
    system "autoreconf", "-fi" if build.head?
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make"
    system "make", "install"
  end

  test do
    system "#{bin}/knock", "localhost", "123:tcp"
  end
end