added my top

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Curtis Schofield 2010-07-26 16:09:55 -07:00 committed by Adam Vandenberg
parent 6d68e8ff0e
commit 48d5d30bc4
1 changed files with 15 additions and 0 deletions

15
Formula/mytop.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Mytop <Formula
url 'http://jeremy.zawodny.com/mysql/mytop/mytop-1.6.tar.gz'
homepage 'http://jeremy.zawodny.com/mysql/mytop/'
md5 '4127c3e486eb664fed60f40849372a9f'
depends_on 'DBD::mysql' => :perl
def install
# needs DBD:mysql
system "perl Makefile.PL PREFIX=#{prefix}"
system "make test install"
end
end