diff options
| author | Justin Clift | 2010-12-02 04:34:37 +1100 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-01 23:52:27 +0000 |
| commit | 836e94df88317b59aed34bcd35bb082c84150541 (patch) | |
| tree | 9dd0157bbe0268bc3ef08ab2243721c259a78d8c /Library | |
| parent | 18133ac27acaa3ea85c9508afa90c23f8c7e47d4 (diff) | |
| download | homebrew-836e94df88317b59aed34bcd35bb082c84150541.tar.bz2 | |
New formula: classads
Used by Condor and other High Throughput Computing projects.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/classads.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/classads.rb b/Library/Formula/classads.rb new file mode 100644 index 000000000..f78ba1de7 --- /dev/null +++ b/Library/Formula/classads.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Classads <Formula + homepage 'http://www.cs.wisc.edu/condor/classad/' + url 'ftp://ftp.cs.wisc.edu/condor/classad/c++/classads-1.0.9.tar.gz' + sha256 'f223b6d5954d3b1cd6b34dba7c7f67a69e959e350b4d9473b582895a326d3b60' + + depends_on "pcre++" + + def install + system "./configure", "--enable-namespace", "--prefix=#{prefix}" + system "make install" + end +end |
