7c648d9732
When interpolating in strings passed to Formula#system, it should be done in such a way that if any interpolated variables contain spaces, they are either (a) passed as part of a list or (b) protected by quotes if they are part of a long string (which is subject to shell expansion). Otherwise, they will be split on the space when expanded by the shell and passed as multiple arguments to whatever process is being executed. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
38 lines
1.1 KiB
Ruby
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'
|
|
md5 '14be6a3e31c7b20aeca78e3e0aed6edc'
|
|
|
|
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
|