aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authordavid.hkc2013-05-27 16:32:09 -0700
committerAdam Vandenberg2013-07-12 09:52:16 -0700
commit189c273af96fd513aaa3c146f9630c6fda2fe037 (patch)
tree4ecc88dc92451f029c07fa85bd00f7ee576d19d9 /Library
parent6bb8039b016fb215e328dd2ed900c693c42d0891 (diff)
downloadhomebrew-189c273af96fd513aaa3c146f9630c6fda2fe037.tar.bz2
opensaml 2.5.2
Closes #20104. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/opensaml.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/opensaml.rb b/Library/Formula/opensaml.rb
new file mode 100644
index 000000000..043a3fefd
--- /dev/null
+++ b/Library/Formula/opensaml.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Opensaml < Formula
+ homepage 'https://wiki.shibboleth.net/confluence/display/OpenSAML/Home'
+ url 'http://shibboleth.net/downloads/c++-opensaml/2.5.2/opensaml-2.5.2.tar.gz'
+ sha256 '5bc3fbe5e789ad7aedfc2919413131400290466ecd2b77b1c3f3dc4c37e6fe54'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'log4shib'
+ depends_on 'xerces-c'
+ depends_on 'xml-security-c'
+ depends_on 'xml-tooling-c'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end