class Mytop < Formula desc "Top-like query monitor for MySQL" homepage "http://www.mysqlfanboy.com/mytop-3/" # URL & homepage down since at least ~November 2015. # url "http://www.mysqlfanboy.com/mytop-3/mytop-1.9.1.tar.gz" url "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/m/mytop/mytop_1.9.1.orig.tar.gz" mirror "https://mirrors.ocf.berkeley.edu/debian/pool/main/mytop/mytop_1.9.1.orig.tar.gz" sha256 "179d79459d0013ab9cea2040a41c49a79822162d6e64a7a85f84cdc44828145e" revision 1 bottle do cellar :any revision 1 sha256 "67a7e69f19a610123bd0dbd3fc9ffac02ee39a61c03e0b1c7c2760705d9c84a9" => :el_capitan sha256 "610b2021a5a02b923e22a99d156f2246b315b759f01f34b507b5e3a585c40d38" => :yosemite sha256 "9882bc7674838f879ff5c8342bab1cdbd284b60e7d250f0bb49cc568be6ee373" => :mavericks end depends_on :mysql depends_on "openssl" conflicts_with "mariadb", :because => "both install `mytop` binaries" conflicts_with "innotop", :because => "both install `perllocal.pod`" conflicts_with "percona-toolkit", :because => "both install `perllocal.pod`" resource "DBD::mysql" do url "https://cpan.metacpan.org/authors/id/C/CA/CAPTTOFU/DBD-mysql-4.033.tar.gz" mirror "http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/DBD-mysql-4.033.tar.gz" sha256 "cc98bbcc33581fbc55b42ae681c6946b70a26f549b3c64466740dfe9a7eac91c" end def install ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5" resource("DBD::mysql").stage do system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}" system "make", "install" end system "perl", "Makefile.PL", "INSTALL_BASE=#{prefix}" system "make", "test", "install" share.install prefix/"man" bin.env_script_all_files(libexec/"bin", :PERL5LIB => ENV["PERL5LIB"]) end test do shell_output("#{bin}/mytop", 1) end end