Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mysql-sandbox: install correctly on Big Sur #67821

Closed
wants to merge 4 commits into from
Closed
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
22 changes: 17 additions & 5 deletions Formula/mysql-sandbox.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ class MysqlSandbox < Formula
url "https://github.com/datacharmer/mysql-sandbox/archive/3.2.17.tar.gz"
sha256 "3af4af111536e4e690042bc80834392f46a7e55c7143332d229ff2eb32321e89"
license "Apache-2.0"
revision 1
head "https://github.com/datacharmer/mysql-sandbox.git"

livecheck do
url :stable
strategy :github_latest
end

bottle do
cellar :any_skip_relocation
sha256 "243b5248bbf998820b15079d4d2228a8289a9f48471723d06764ba4dc4a27a3e" => :catalina
Expand All @@ -15,15 +21,21 @@ class MysqlSandbox < Formula
sha256 "77ab4eb3bbd5d374020081b3505cd7f18de1500019af148f00ebef13a34e4222" => :el_capitan
end

uses_from_macos "perl"

def install
ENV["PERL_LIBDIR"] = libexec/"lib/perl5"
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5/site_perl"
ENV["PERL_LIBDIR"] = lib/"perl5"
ENV.prepend_create_path "PERL5LIB", lib/"perl5"

system "perl", "Makefile.PL", "PREFIX=#{libexec}"
system "perl", "Makefile.PL", "INSTALL_BASE=#{prefix}", "INSTALLSITEMAN3DIR=#{man3}"
system "make", "test", "install"

bin.install Dir["#{libexec}/bin/*"]
bin.env_script_all_files(libexec/"bin", PERL5LIB: ENV["PERL5LIB"])
Pathname.glob("#{bin}/*") do |file|
next if file.extname == ".sh"

libexec.install(file)
file.write_env_script(libexec.join(file.basename), PERL5LIB: ENV["PERL5LIB"])
end
end

test do
Expand Down