xrootd 4.0.0

Closes Homebrew/homebrew#30376.
This commit is contained in:
Brett Koonce 2014-06-22 18:37:22 -07:00
parent 82a6949a25
commit f71166d411

View file

@ -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