46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
class Zorba < Formula
|
|
desc "NoSQL query processor"
|
|
homepage "http://www.zorba.io/"
|
|
url "https://github.com/28msec/zorba/archive/3.1.tar.gz"
|
|
sha256 "05eed935c0ff3626934a5a70724a42410fd93bc96aba1fa4821736210c7f1dd8"
|
|
revision 12
|
|
|
|
bottle do
|
|
sha256 "01bbd1e2348d5e758950374e10d629801e51ee2860ff1682f9e9e40610e60d33" => :catalina
|
|
sha256 "c7d863356378a2053794453b70602151cb190ddd3de322ff0b0b47818d77a68f" => :mojave
|
|
sha256 "ac62c2bdc67c3283f3ad442f5b707d439dab065d50b4b9ccb1044a3ca6a81249" => :high_sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "flex"
|
|
depends_on "icu4c"
|
|
depends_on "xerces-c"
|
|
|
|
uses_from_macos "libxml2"
|
|
|
|
conflicts_with "xqilla", :because => "both supply `xqc.h`"
|
|
|
|
def install
|
|
# icu4c 61.1 compatability
|
|
ENV.append "CXXFLAGS", "-DU_USING_ICU_NAMESPACE=1"
|
|
|
|
ENV.cxx11
|
|
|
|
args = std_cmake_args
|
|
|
|
# dyld: lazy symbol binding failed: Symbol not found: _clock_gettime
|
|
# usual superenv fix doesn't work since zorba doesn't use HAVE_CLOCK_GETTIME
|
|
args << "-DZORBA_HAVE_CLOCKGETTIME=OFF" if MacOS.version == :el_capitan && MacOS::Xcode.version >= "8.0"
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_equal shell_output("#{bin}/zorba -q 1+1").strip,
|
|
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n2"
|
|
end
|
|
end
|