davix 0.2.10 (new formula)
Create the formula for davix, a fast and feature-rich HTTP and DAV client and HTTP/DAV library. It is used in the High Energy Physics community, specifically in the analysis framework ROOT (http://root.cern.ch/drupal/) for data access via HTTP/DAV. Closes Homebrew/homebrew#29620. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
e6ca117247
commit
adf2e79769
1 changed files with 25 additions and 0 deletions
25
Formula/davix.rb
Normal file
25
Formula/davix.rb
Normal file
|
@ -0,0 +1,25 @@
|
|||
require "formula"
|
||||
|
||||
class Davix < Formula
|
||||
homepage "http://dmc.web.cern.ch/projects/davix/home"
|
||||
head "https://git.cern.ch/pub/davix.git"
|
||||
|
||||
stable do
|
||||
url "https://git.cern.ch/pub/davix.git", :tag => "R_0_2_10-1"
|
||||
version "0.2.10-1"
|
||||
end
|
||||
|
||||
depends_on "cmake" => :build
|
||||
depends_on "doxygen" => :build
|
||||
|
||||
def install
|
||||
ENV.libcxx
|
||||
|
||||
system "cmake", ".", *std_cmake_args
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/davix-get", "http://www.google.com"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue