diff --git a/Formula/voltdb.rb b/Formula/voltdb.rb index 2ca8e13457..142fd70ed1 100644 --- a/Formula/voltdb.rb +++ b/Formula/voltdb.rb @@ -1,8 +1,8 @@ class Voltdb < Formula desc "Horizontally-scalable, in-memory SQL RDBMS" homepage "https://github.com/VoltDB/voltdb" - url "https://github.com/VoltDB/voltdb/archive/voltdb-5.6.tar.gz" - sha256 "9ea24d8cacdf2e19ba60487f3e9dfefa83c18cb3987571abc44b858ce0db7c3e" + url "https://github.com/VoltDB/voltdb/archive/voltdb-6.6.tar.gz" + sha256 "300d06c8f5a1cc4a3537f216ea105d5ccc8987b10bad2c676a40543c8903d72e" head "https://github.com/VoltDB/voltdb.git" bottle do @@ -14,13 +14,25 @@ class Voltdb < Formula end depends_on :ant => :build + depends_on "cmake" => :build def install system "ant" - inreplace Dir["bin/*"] - ["bin/voltadmin", "bin/voltdb", "bin/rabbitmqloader"], + # Edit VOLTDB_LIB variable in bash scripts to match homebrew's folder structure. Python scripts work without + # changes and are excluded here. + inreplace Dir["bin/*"] - ["bin/voltadmin", "bin/voltdb", "bin/rabbitmqloader", "bin/voltdeploy", "bin/voltenv"], %r{VOLTDB_LIB=\$VOLTDB_HOME\/lib}, "VOLTDB_LIB=$VOLTDB_HOME/lib/voltdb" + inreplace "bin/voltenv" do |s| + # voltenv location detection is different than in other bash scripts. + s.gsub! /VOLTDB_VOLTDB="\$VOLTDB_LIB"/, "VOLTDB_VOLTDB=\"$VOLTDB_BASE/voltdb\"" + + # Remove voltenv installed as link check + # Upstream PR https://github.com/VoltDB/voltdb/pull/3973 + s.gsub! /if \[ "\$\{0\}" = "\$SOURCE" \]; then/, "if [ \"${0}\" = \"${BASH_SOURCE[0]}\" ]; then" + end + (lib/"voltdb").install Dir["lib/*"] lib.install_symlink lib/"voltdb/python" prefix.install "bin", "tools", "voltdb", "version.txt", "doc"