blob: a63892709f44e98445958c4f1c88fbc26505621b (
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-6652.tar.gz'
homepage 'http://code.google.com/p/maatkit/'
md5 'b21a7ee121aa207279761121e00d589a'
depends_on 'DBD::mysql' => :perl
def install
system "perl Makefile.PL PREFIX=#{prefix}"
system "make install"
end
end
|