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