Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Formula/m/manticoresearch.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Manticoresearch < Formula
desc "Open source text search engine"
homepage "https://manticoresearch.com"
url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/13.13.0.tar.gz"
sha256 "9c2e730ab86d5c9fc330c86703ef9210562247340e626f6d7ba6733a4d574f6b"
url "https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/14.1.0.tar.gz"
sha256 "659c7b6f459c8e62df9f769b6651862508a4c48c9b61f756e6de6a911f9fe8e9"
license all_of: [
"GPL-3.0-or-later",
"GPL-2.0-only", # wsrep
Expand Down Expand Up @@ -57,8 +57,6 @@ class Manticoresearch < Formula
def install
# Avoid statically linking to boost
inreplace "src/CMakeLists.txt", "set ( Boost_USE_STATIC_LIBS ON )", "set ( Boost_USE_STATIC_LIBS OFF )"
# Fix to error: call to non-‘constexpr’ function
inreplace "src/sphinxquery/transform_commonkeywords.cpp", "constexpr uint64_t", "inline uint64_t"

ENV["ICU_ROOT"] = deps.find { |dep| dep.name.match?(/^icu4c(@\d+)?$/) }
.to_formula.opt_prefix.to_s
Expand Down
Loading