aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/maatkit.rb
blob: 4307fd86a00a6c114fde0c1db2d0864d24ad2891 (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-6070.tar.gz'
  homepage 'http://code.google.com/p/maatkit/'
  md5 '313e7b01c0a718a84055112d0060e45e'

  depends_on 'DBD::mysql' => :perl

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