86 lines
2.8 KiB
Ruby
86 lines
2.8 KiB
Ruby
class Tarantool < Formula
|
|
desc "In-memory database and Lua application server"
|
|
homepage "https://tarantool.org/"
|
|
url "https://download.tarantool.org/tarantool/2.8/src/tarantool-2.8.2.0.tar.gz"
|
|
sha256 "f2e966fc6b644254270fd84f78ccc4dd1434500a6986fe9361b34804acae7e10"
|
|
license "BSD-2-Clause"
|
|
version_scheme 1
|
|
head "https://github.com/tarantool/tarantool.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 big_sur: "cbc3b24513ad4118428da7beee0919dd6699af050db5f77ae2deb58eace8385d"
|
|
sha256 catalina: "7f41f2e11374e81ec970a960f2b939406f995c3410de7209104719a74a89fd0d"
|
|
sha256 mojave: "67fde3ce00ec0e0cb4c0fccc0656688773de193e134f313f5da65567dc88986c"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "icu4c"
|
|
depends_on "openssl@1.1"
|
|
depends_on "readline"
|
|
|
|
uses_from_macos "curl"
|
|
uses_from_macos "ncurses"
|
|
|
|
def install
|
|
if MacOS.version >= :big_sur
|
|
sdk = MacOS.sdk_path_if_needed
|
|
lib_suffix = "tbd"
|
|
else
|
|
sdk = ""
|
|
lib_suffix = "dylib"
|
|
end
|
|
|
|
# Necessary for luajit to build on macOS Mojave (see luajit formula)
|
|
ENV["MACOSX_DEPLOYMENT_TARGET"] = MacOS.version
|
|
|
|
# Avoid keeping references to Homebrew's clang/clang++ shims
|
|
inreplace "src/trivia/config.h.cmake",
|
|
"#define COMPILER_INFO \"@CMAKE_C_COMPILER@ @CMAKE_CXX_COMPILER@\"",
|
|
"#define COMPILER_INFO \"/usr/bin/clang /usr/bin/clang++\""
|
|
|
|
args = std_cmake_args
|
|
args << "-DCMAKE_INSTALL_MANDIR=#{doc}"
|
|
args << "-DCMAKE_INSTALL_SYSCONFDIR=#{etc}"
|
|
args << "-DCMAKE_INSTALL_LOCALSTATEDIR=#{var}"
|
|
args << "-DENABLE_DIST=ON"
|
|
args << "-DOPENSSL_ROOT_DIR=#{Formula["openssl@1.1"].opt_prefix}"
|
|
args << "-DREADLINE_ROOT=#{Formula["readline"].opt_prefix}"
|
|
args << "-DENABLE_BUNDLED_LIBCURL=OFF"
|
|
args << "-DCURL_INCLUDE_DIR=#{sdk}/usr/include"
|
|
args << "-DCURL_LIBRARY=#{sdk}/usr/lib/libcurl.#{lib_suffix}"
|
|
args << "-DCURSES_NEED_NCURSES=TRUE"
|
|
args << "-DCURSES_NCURSES_INCLUDE_PATH=#{sdk}/usr/include"
|
|
args << "-DCURSES_NCURSES_LIBRARY=#{sdk}/usr/lib/libncurses.#{lib_suffix}"
|
|
args << "-DICONV_INCLUDE_DIR=#{sdk}/usr/include"
|
|
|
|
system "cmake", ".", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
local_user = ENV["USER"]
|
|
inreplace etc/"default/tarantool", /(username\s*=).*/, "\\1 '#{local_user}'"
|
|
|
|
(var/"lib/tarantool").mkpath
|
|
(var/"log/tarantool").mkpath
|
|
(var/"run/tarantool").mkpath
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.lua").write <<~EOS
|
|
box.cfg{}
|
|
local s = box.schema.create_space("test")
|
|
s:create_index("primary")
|
|
local tup = {1, 2, 3, 4}
|
|
s:insert(tup)
|
|
local ret = s:get(tup[1])
|
|
if (ret[3] ~= tup[3]) then
|
|
os.exit(-1)
|
|
end
|
|
os.exit(0)
|
|
EOS
|
|
system bin/"tarantool", "#{testpath}/test.lua"
|
|
end
|
|
end
|