homebrew-core/Formula/innotop.rb
Adam Vandenberg c03eaea9c6 remove Term::ReadKey dependencies
This perl module has been available on OS X as far back as 10.5.

Closes Homebrew/homebrew#29347.
2014-05-17 13:07:54 -07:00

14 lines
346 B
Ruby

require 'formula'
class Innotop < Formula
homepage 'http://code.google.com/p/innotop/'
url 'https://innotop.googlecode.com/files/innotop-1.9.1.tar.gz'
sha1 '6b0b5f492e7188152727f6c157043be180ba516a'
depends_on 'DBD::mysql' => :perl
def install
system "perl", "Makefile.PL", "PREFIX=#{prefix}"
system "make install"
end
end