c03eaea9c6
This perl module has been available on OS X as far back as 10.5. Closes Homebrew/homebrew#29347.
14 lines
346 B
Ruby
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
|