7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
329 B
Ruby
14 lines
329 B
Ruby
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
|