aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/maatkit.rb
blob: e5d335f8ffa1736d335668cb85f63597cda781f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Maatkit <Formula
  url 'http://maatkit.googlecode.com/files/maatkit-6839.tar.gz'
  homepage 'http://code.google.com/p/maatkit/'
  sha1 'f909e8c48b927032a63539f63d555356635e32aa'

  depends_on 'DBD::mysql' => :perl

  def install
    system "perl Makefile.PL PREFIX=#{prefix}"
    system "make install"
  end
end