2012-04-25 18:52:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Xrootd < Formula
|
|
|
|
homepage 'http://xrootd.slac.stanford.edu/index.html'
|
2013-01-03 22:01:12 +00:00
|
|
|
url 'http://xrootd.slac.stanford.edu/download/v3.2.7/xrootd-3.2.7.tar.gz'
|
|
|
|
sha1 '33c7cb60ac69dfabd76d1f0f58253a6b0533e2bd'
|
2012-04-25 18:52:16 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
mkdir "build" do
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", "..", *std_cmake_args
|
2012-04-25 18:52:16 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/xrootd"
|
|
|
|
end
|
|
|
|
end
|