87 lines
3.2 KiB
Ruby
87 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.1/source/tarball/percona-toolkit-3.3.1.tar.gz"
|
|
sha256 "60fc106b195b6716f1ebb3ca16b401692228c1a2a885da72111a93391fd12090"
|
|
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: "1877facb5a23a5eea41fd11e8f02373d151fbead2a9c6e32249fb83bc15107d3"
|
|
sha256 cellar: :any, big_sur: "8da16ad8dae9b642f959763c04f504e8e844f608ad34ecb5c47f8118acec5d81"
|
|
sha256 cellar: :any, catalina: "a4a756d4c47f72d67680d33eb3f6e179eb857d5d12aa90cfb4f665a9d7ff10b5"
|
|
sha256 cellar: :any, mojave: "d702da603979b5205d7e762e4b7e387a954dd1b987b982730de15b0c44a553ae"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "a2f41f215b4e4a2a19b70c00e4f2fe91e8a8b3efe021b947dd3198859e5ec4a0"
|
|
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
|
|
|
|
resource "DBI" do
|
|
url "https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.643.tar.gz"
|
|
sha256 "8a2b993db560a2c373c174ee976a51027dd780ec766ae17620c20393d2e836fa"
|
|
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.03.tar.gz"
|
|
sha256 "e41f8761a5e7b9b27af26fe5780d44550d7a6a66bf3078e337d676d07a699941"
|
|
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
|
|
rewrite_shebang detected_perl_shebang, *bin.children
|
|
|
|
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
|