homebrew-core/Formula/davix.rb
ilovezfs 32a686da5b davix 0.6.7
Closes #20371.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2017-11-07 08:36:34 -08:00

33 lines
1 KiB
Ruby

class Davix < Formula
desc "Library and tools for advanced file I/O with HTTP-based protocols"
homepage "https://dmc.web.cern.ch/projects/davix/home"
url "https://github.com/cern-it-sdc-id/davix.git",
:tag => "R_0_6_7",
:revision => "4425c4498655f11401c7909dfe241b406487f043"
version "0.6.7"
head "https://github.com/cern-it-sdc-id/davix.git"
bottle do
cellar :any
sha256 "c365e07fc2e51a89f14245daff2bde13d9a3df044a9d5de80b2c699fe50c79b2" => :high_sierra
sha256 "58b587ea2528b80f1fd134c54cd200d3cbbbbf5ef433f6430d8f6c74f8af085a" => :sierra
sha256 "f595758a61ba591a8b746a4f22336f19abecbbe881ad4e0e7cbec458d13184a8" => :el_capitan
sha256 "6304f894a261384a80a25838e88bea83a63f753b645dc1c4550d78993fc2fee0" => :yosemite
end
depends_on "cmake" => :build
depends_on "doxygen" => :build
depends_on "openssl"
depends_on "ossp-uuid"
def install
ENV.libcxx
system "cmake", ".", *std_cmake_args
system "make", "install"
end
test do
system "#{bin}/davix-get", "https://www.google.com"
end
end