aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bip.rb
blob: 75057eca1f34109e0ea2beec2074e9305b466266 (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
32
33
34
35
36
class Bip < Formula
  homepage "https://bip.milkypond.org" # Self-signed cert.
  url "https://mirrors.kernel.org/debian/pool/main/b/bip/bip_0.8.9.orig.tar.gz"
  sha256 "3c950f71ef91c8b686e6835f9b722aa7ccb88d3da4ec1af19617354fd3132461"
  revision 1

  bottle do
    cellar :any
    sha256 "73a885e1f2655a3c6d8ff108559e00171a78767dbb57ce79cfbfd77e68362d8c" => :yosemite
    sha256 "a979c86cee1ea3c7cbe99039eda5ae1b8888547a74339b0f8d20a170b331c169" => :mavericks
    sha256 "fb8255c8de05e2cd287352e7a0088cc10b83c2f8a30e2e92af30237c2390d35d" => :mountain_lion
  end

  depends_on "openssl"

  def install
    system "./configure", "--disable-debug",
                          "--disable-dependency-tracking",
                          "--disable-silent-rules",
                          "--prefix=#{prefix}",
                          "--sysconfdir=#{etc}/bip"

    system "make", "install"
    (etc+"bip").install "samples/bip.conf"
  end

  def caveats; <<-EOS.undent
    Prior to running bip you will need to do:
      mkdir -p ~/.bip/logs
    EOS
  end

  test do
    system bin/"bip", "-v"
  end
end