aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrett Koonce2014-06-22 18:37:22 -0700
committerBrett Koonce2014-06-22 23:30:11 -0700
commitad540d193e0cb8b43944039d9ae088bfe5b8ae05 (patch)
treeb34b1b8c5bc96001fae3dde5dc671963172e3a13 /Library/Formula
parent858b74b1d3a327be06c58b33fd87bf458656963c (diff)
downloadhomebrew-ad540d193e0cb8b43944039d9ae088bfe5b8ae05.tar.bz2
xrootd 4.0.0
Closes #30376.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xrootd.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/xrootd.rb b/Library/Formula/xrootd.rb
index 06a67e30a..fb14302d2 100644
--- a/Library/Formula/xrootd.rb
+++ b/Library/Formula/xrootd.rb
@@ -1,18 +1,18 @@
-require 'formula'
+require "formula"
class Xrootd < Formula
- homepage 'http://xrootd.org'
- url 'http://xrootd.org/download/v3.3.6/xrootd-3.3.6.tar.gz'
- sha1 'be1fca000a517933c73c68e40cee6203fd2b6ad6'
+ homepage "http://xrootd.org"
+ url "http://xrootd.org/download/v4.0.0/xrootd-4.0.0.tar.gz"
+ sha1 "3d2a46756253075ebe05d94b1a547914d39f9b22"
- depends_on 'cmake' => :build
+ depends_on "cmake" => :build
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make install"
end
- share.install prefix/'man'
+ share.install prefix/"man"
end
test do