aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/argus.rb
blob: 4e85f5393e925170834af83bedecea696bde3c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require "formula"

class Argus < Formula
  homepage "http://qosient.com/argus/"
  url "http://qosient.com/argus/src/argus-3.0.8.tar.gz"
  sha1 "fe9833c7f8ea4cdf7054b37024e5d007613f9571"

  bottle do
    cellar :any
    sha1 "5b8ca09efc8f4f84d78883f3f866628da061928b" => :yosemite
    sha1 "c96587d47409a7cb961450ade0b76558c1bf3f9c" => :mavericks
    sha1 "13a6e2c690d830adddb45bce4b8b0b24a01c9249" => :mountain_lion
  end

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