homebrew-core/Formula/xrootd.rb
Brett Koonce 0c3b41a47f xrootd 3.2.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-02 16:36:38 -08: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.2.6/xrootd-3.2.6.tar.gz'
sha1 '2eb2fc1d5b19d8080edb716bfa37469e54e5cde4'
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