9c2cb254b6
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 Homebrew/homebrew#15272. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
26 lines
692 B
Ruby
26 lines
692 B
Ruby
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
|