diff options
| author | Gerd Behrmann | 2012-10-03 11:19:48 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-17 12:53:30 -0800 |
| commit | d50156b05bb2864235628d6a8746a394d5464334 (patch) | |
| tree | 5efef3cd54617428317e0f5e70159bd9b698b210 /Library | |
| parent | 2361328f28c786fd91d7433386547422856cc6a3 (diff) | |
| download | homebrew-d50156b05bb2864235628d6a8746a394d5464334.tar.bz2 | |
nordugrid-arc 2.0.1
The Advanced Resource Connector (ARC) middleware integrates computing
resources (usually, computing clusters managed by a batch system or
standalone workstations) and storage facilities, making them available
via a secure common Grid layer.
The formula also provides the client tools required to use ARC resources.
Closes #15272.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/nordugrid-arc.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Library/Formula/nordugrid-arc.rb b/Library/Formula/nordugrid-arc.rb new file mode 100644 index 000000000..798e3c17e --- /dev/null +++ b/Library/Formula/nordugrid-arc.rb @@ -0,0 +1,26 @@ +require 'formula' + +class NordugridArc < Formula + homepage 'http://www.nordugrid.org' + url 'http://download.nordugrid.org/packages/nordugrid-arc/releases/2.0.1/src/nordugrid-arc-2.0.1.tar.gz' + sha1 '897ae70f8cfb7fedfeb73ce95e7eee685615eb2f' + + depends_on 'pkg-config' => :build + depends_on :libtool + depends_on 'gettext' + depends_on 'glib' + depends_on 'glibmm' + depends_on 'libxml2' + depends_on 'globus-toolkit' + + fails_with :clang do + build 421 + cause "Fails with 'template specialization requires 'template<>''" + end + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
