blob: 8583e4091921c8c37bb6f4255656991cf0ff97a9 (
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.zip'
sha1 '25d5b29bfab858e71ca166d29e9218bd39ba5cc6'
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
|