homebrew-core/Formula/percona-toolkit.rb

89 lines
3.2 KiB
Ruby

require "language/perl"
class PerconaToolkit < Formula
include Language::Perl::Shebang
desc "Command-line tools for MySQL, MariaDB and system tasks"
homepage "https://www.percona.com/software/percona-toolkit/"
url "https://www.percona.com/downloads/percona-toolkit/3.3.0/source/tarball/percona-toolkit-3.3.0.tar.gz"
sha256 "0a71e3bfa1eec7c9d8941080d2852d4d4354c2c1fe303f2f28f6352627549d16"
license any_of: ["GPL-2.0-only", "Artistic-1.0-Perl"]
head "lp:percona-toolkit", using: :bzr
livecheck do
url "https://www.percona.com/downloads/percona-toolkit/LATEST/"
regex(%r{value=.*?percona-toolkit/v?(\d+(?:\.\d+)+)["' >]}i)
end
bottle do
sha256 cellar: :any, arm64_big_sur: "f9a61f98a776a1e43d6019f7624ef1e989e1f7d02003ea50c1347cf8f1e051a9"
sha256 cellar: :any, big_sur: "51840e9c331c1c8268cd2a7e0369a61077994597473fde314e0ebfa57f6ab1d8"
sha256 cellar: :any, catalina: "83b295ee83a59f0bd55db724ee8b9525c62107fe2155cb834f12158d22867f32"
sha256 cellar: :any, mojave: "383bce5fcca7a6b1c3cb7263e149594ea5db49058e7a0fbfe5190e1edd5e97fa"
end
depends_on "mysql-client"
depends_on "openssl@1.1"
uses_from_macos "perl"
# Should be installed before DBD::mysql
resource "Devel::CheckLib" do
url "https://cpan.metacpan.org/authors/id/M/MA/MATTN/Devel-CheckLib-1.14.tar.gz"
sha256 "f21c5e299ad3ce0fdc0cb0f41378dca85a70e8d6c9a7599f0e56a957200ec294"
end
# In Mojave, this is not part of the system Perl anymore
if MacOS.version >= :mojave
resource "DBI" do
url "https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.643.tar.gz"
sha256 "8a2b993db560a2c373c174ee976a51027dd780ec766ae17620c20393d2e836fa"
end
end
resource "DBD::mysql" do
url "https://cpan.metacpan.org/authors/id/D/DV/DVEEDEN/DBD-mysql-4.050.tar.gz"
sha256 "4f48541ff15a0a7405f76adc10f81627c33996fbf56c95c26c094444c0928d78"
end
resource "JSON" do
url "https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-4.02.tar.gz"
sha256 "444a88755a89ffa2a5424ab4ed1d11dca61808ebef57e81243424619a9e8627c"
end
def install
ENV.prepend_create_path "PERL5LIB", buildpath/"build_deps/lib/perl5"
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
build_only_deps = %w[Devel::CheckLib]
resources.each do |r|
r.stage do
install_base = if build_only_deps.include? r.name
buildpath/"build_deps"
else
libexec
end
system "perl", "Makefile.PL", "INSTALL_BASE=#{install_base}"
system "make", "install"
end
end
system "perl", "Makefile.PL", "INSTALL_BASE=#{prefix}"
system "make", "install"
share.install prefix/"man"
# Disable dynamic selection of perl which may cause segfault when an
# incompatible perl is picked up.
# https://github.com/Homebrew/homebrew-core/issues/4936
bin.find { |f| rewrite_shebang detected_perl_shebang, f }
bin.env_script_all_files(libexec/"bin", PERL5LIB: ENV["PERL5LIB"])
end
test do
input = "SELECT name, password FROM user WHERE id='12823';"
output = pipe_output("#{bin}/pt-fingerprint", input, 0)
assert_equal "select name, password from user where id=?;", output.chomp
end
end