blob: 03993040814367d4b7748346ae650088c223a33d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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'
fails_with :clang do
build 425
cause "Undefined symbols for architecture x86_64"
end
def install
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|