aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/apib.rb
blob: 399a3a99958e32c31d4d34bcb05fb1973e9815f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Apib < Formula
  homepage 'https://github.com/apigee/apib'
  url 'https://github.com/apigee/apib/archive/APIB_1_0.tar.gz'
  sha1 'd7a5a2accd6bda7efeca433141b5df44ccd7f0b0'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make"
    bin.install 'apib', 'apibmon'
  end

  test do
    system "#{bin}/apib", "-c 1", "-d 1", "http://www.google.com"
  end
end