require "formula" class PerconaToolkit < Formula homepage "http://www.percona.com/software/percona-toolkit/" url "http://www.percona.com/redir/downloads/percona-toolkit/2.2.7/percona-toolkit-2.2.7.tar.gz" sha1 "63dca7c6721ea22b2487980be84450b4d8c808a1" 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