homebrew-core/Formula/xrootd.rb
Brett Koonce a550151b6a xrootd 3.3.1
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-03-30 14:15:25 -05:00

20 lines
427 B
Ruby

require 'formula'
class Xrootd < Formula
homepage 'http://xrootd.slac.stanford.edu/index.html'
url 'http://xrootd.slac.stanford.edu/download/v3.3.1/xrootd-3.3.1.tar.gz'
sha1 'ffea6e798f0e9dccf79854736483c914393bd754'
depends_on 'cmake' => :build
def install
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make install"
end
end
def test
system "#{bin}/xrootd"
end
end