homebrew-core/Formula/percona-toolkit.rb
2012-03-06 21:28:16 -08:00

38 lines
974 B
Ruby

require 'formula'
class PerconaToolkit < Formula
homepage 'http://www.percona.com/software/percona-toolkit/'
url 'http://www.percona.com/redir/downloads/percona-toolkit/2.0.3/percona-toolkit-2.0.3.tar.gz'
md5 '10f394c101067b6bf28427c5d4833330'
depends_on 'Time::HiRes' => :perl
depends_on 'DBD::mysql' => :perl
def install
system "perl Makefile.PL PREFIX=#{prefix}"
system "make"
system "make test"
system "make install"
end
def test
system "pt-archiver"
system "pt-config-diff"
system "pt-deadlock-logger"
system "pt-duplicate-key-checker"
system "pt-find"
system "pt-fk-error-logger"
system "pt-heartbeat"
system "pt-kill"
system "pt-log-player"
system "pt-pmp"
system "pt-slave-delay"
system "pt-slave-find"
system "pt-slave-restart"
system "pt-summary"
system "pt-table-checksum"
system "pt-table-sync"
system "pt-upgrade"
system "pt-variable-advisor"
end
end