aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/innotop.rb
blob: c7f08fd6718505825bc4f68a3c1f541c46519225 (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.7.2.tar.gz'
  homepage 'http://code.google.com/p/innotop/'
  md5 '37d8c71fb1eefbc607a733dd4b38af05'

  depends_on 'DBD::mysql' => :perl

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