88cd145027
Closes Homebrew/homebrew#35489. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
28 lines
708 B
Ruby
28 lines
708 B
Ruby
class Xrootd < Formula
|
|
homepage "http://xrootd.org"
|
|
head "git://github.com/xrootd/xrootd.git"
|
|
url "http://xrootd.org/download/v4.1.1/xrootd-4.1.1.tar.gz"
|
|
sha1 "ed19edf50e0c641f74a78e13b78d2d70d59410f7"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "755130a388fb467ddaf44a93494172876ba9af71" => :yosemite
|
|
sha1 "26bcf7eff4cf9dc93ba5940764ed5671fe1fe1d9" => :mavericks
|
|
sha1 "f5f476756b9f03fa0c3900861c08b28237c6c330" => :mountain_lion
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "openssl"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make install"
|
|
end
|
|
share.install prefix/"man"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/xrootd", "-H"
|
|
end
|
|
end
|