homebrew-core/Formula/maatkit.rb

15 lines
338 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Maatkit < Formula
2010-11-03 02:44:30 +00:00
url 'http://maatkit.googlecode.com/files/maatkit-6960.tar.gz'
homepage 'http://code.google.com/p/maatkit/'
2010-11-03 02:44:30 +00:00
sha1 'ad8dd1d9e476f79e7e91f98919a2ae7c5b8a2c20'
depends_on 'DBD::mysql' => :perl
def install
system "perl Makefile.PL PREFIX=#{prefix}"
system "make install"
end
end