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

class Innotop < Formula
  url 'http://innotop.googlecode.com/files/innotop-1.8.0.tar.gz'
  homepage 'http://code.google.com/p/innotop/'
  md5 '703ba1036bc1067650b558eecc3c15cd'

  depends_on 'DBD::mysql' => :perl

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