homebrew-core/Formula/percona-toolkit.rb
BrewTestBot a109fca3db percona-toolkit: add 2.2.8 bottle.
Closes Homebrew/homebrew#29868.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-06-04 16:41:23 +01:00

43 lines
1.3 KiB
Ruby

require "formula"
class PerconaToolkit < Formula
homepage "http://www.percona.com/software/percona-toolkit/"
url "http://www.percona.com/redir/downloads/percona-toolkit/2.2.8/percona-toolkit-2.2.8.tar.gz"
sha1 "26c53ab05354af7bf7bda3b9bbcb48349b046246"
bottle do
sha1 "4f7fee1c805430ae44687a9181db218c50f19c18" => :mavericks
sha1 "acd9e515966c53d16770c13a1502db2cf2690925" => :mountain_lion
sha1 "87a3e90e6131bbea8ced04c361a1d137a61e7ef5" => :lion
end
depends_on :mysql
resource "DBD::mysql" do
url "http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/DBD-mysql-4.027.tar.gz"
sha1 "3bf1edd6f0b4f6144b2aaa715c80df3fb1cd2119"
end
resource "JSON" do
url "http://search.cpan.org/CPAN/authors/id/M/MA/MAKAMAKA/JSON-2.90.tar.gz"
sha1 "8f0ffe72cbe9e6287d7ecafcf19b31cc297364c2"
end
def install
ENV.prepend_create_path "PERL5LIB", libexec+"lib/perl5"
resource("JSON").stage do
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
system "make", "install"
end
resource("DBD::mysql").stage do
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
system "make", "install"
end
system "perl", "Makefile.PL", "PREFIX=#{prefix}"
system "make", "test", "install"
bin.env_script_all_files(libexec+"bin", :PERL5LIB => ENV["PERL5LIB"])
end
end