aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/argus.rb
blob: e54cfc8761886e5566c1b98ac1ac613dddb067b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Argus < Formula
  homepage 'http://qosient.com/argus/'
  url 'http://qosient.com/argus/src/argus-3.0.6.1.tar.gz'
  sha1 '0da193957510fbe1b72875d4ea205453cb7821be'

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