homebrew-core/Formula/xrootd.rb
Brett Koonce a381561ff8 xrootd 3.3.5
Closes Homebrew/homebrew#25326.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-19 16:35:45 +00:00

21 lines
425 B
Ruby

require 'formula'
class Xrootd < Formula
homepage 'http://xrootd.org'
url 'http://xrootd.org/download/v3.3.5/xrootd-3.3.5.tar.gz'
sha1 '103be7641ef0e7a3a4f6686641a8dc207eb4cf7f'
depends_on 'cmake' => :build
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make install"
end
share.install prefix/'man'
end
def test
system "#{bin}/xrootd", "-H"
end
end