blob: 82b5001d4fd921b9b113c1d379a5919a14c29d5e (
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 ArgusClients < Formula
homepage "http://qosient.com/argus/"
url "http://qosient.com/argus/src/argus-clients-3.0.8.tar.gz"
sha1 "3b9d764dc067af64670bcd8328d6f48088b9b5ca"
bottle do
cellar :any
sha1 "fd64dab110eaa36c7722c547faa2baaed55684de" => :yosemite
sha1 "b3d61df656a92a74cfd57a0230ffe010a5ebc0f8" => :mavericks
sha1 "9e8d00a518618556b804803b46777fde95ec10d7" => :mountain_lion
end
depends_on "readline" => :recommended
depends_on "rrdtool" => :recommended
def install
ENV.append "CFLAGS", "-std=gnu89"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
end
|