diff options
| author | Gerd Behrmann | 2014-05-04 16:46:20 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-04 09:44:41 -0700 |
| commit | 6b069949f08b5b29e5bdbce94b758a1f454f76ea (patch) | |
| tree | 8a36fef4358363020e29f59ee6e902fca25acdfa /Library/Formula | |
| parent | bcafe25427a5a27130ee55de80e06b5d68705a5c (diff) | |
| download | homebrew-6b069949f08b5b29e5bdbce94b758a1f454f76ea.tar.bz2 | |
nordugrid-arc 4.1.0
Closes #28946.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/nordugrid-arc.rb | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/Library/Formula/nordugrid-arc.rb b/Library/Formula/nordugrid-arc.rb index 91fc7f261..f9fc9d071 100644 --- a/Library/Formula/nordugrid-arc.rb +++ b/Library/Formula/nordugrid-arc.rb @@ -2,8 +2,8 @@ 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' + url 'http://download.nordugrid.org/packages/nordugrid-arc/releases/4.1.0/src/nordugrid-arc-4.1.0.tar.gz' + sha1 '9836793b91b31d3c24ae5b0200aba2a56530e7e7' depends_on 'pkg-config' => :build depends_on :libtool @@ -18,9 +18,32 @@ class NordugridArc < Formula cause "Fails with 'template specialization requires 'template<>''" end + # See http://bugzilla.nordugrid.org/cgi-bin/bugzilla/show_bug.cgi?id=3366 + patch :DATA + def install system "./configure", "--disable-dependency-tracking", + "--disable-swig", "--prefix=#{prefix}" system "make install" end + + test do + (testpath/'foo').write('data') + system "#{bin}/arccp", "foo", "bar" + end end + +__END__ +diff --git a/src/services/ldap-infosys/giis/Index.h b/src/services/ldap-infosys/giis/Index.h +index 7e91cd3..64fb30a 100644 +--- a/src/services/ldap-infosys/giis/Index.h ++++ b/src/services/ldap-infosys/giis/Index.h +@@ -3,6 +3,7 @@ + + #include <list> + #include <string> ++#include <pthread.h> + + #include "Policy.h" + #include "Entry.h" |
