homebrew-core/Formula/percona-toolkit.rb
Gergo Erdosi 05c1a78e73 percona: Use SHA1 instead of MD5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-06-10 09:18:16 -07:00

38 lines
1.1 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.1.1/percona-toolkit-2.1.1.tar.gz'
sha1 'bbaf2440c55bb62b5e98d08bd3246e82c84f6f2a'
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 "#{bin}/pt-archiver"
system "#{bin}/pt-config-diff"
system "#{bin}/pt-deadlock-logger"
system "#{bin}/pt-duplicate-key-checker"
system "#{bin}/pt-find"
system "#{bin}/pt-fk-error-logger"
system "#{bin}/pt-heartbeat"
system "#{bin}/pt-kill"
system "#{bin}/pt-log-player"
system "#{bin}/pt-pmp"
system "#{bin}/pt-slave-delay"
system "#{bin}/pt-slave-find"
system "#{bin}/pt-slave-restart"
system "#{bin}/pt-summary"
system "#{bin}/pt-table-checksum"
system "#{bin}/pt-table-sync"
system "#{bin}/pt-upgrade"
system "#{bin}/pt-variable-advisor"
end
end