blob: 2ea15931fbf44fb246fcbaba89ccb7a275675688 (
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.1.tar.gz'
homepage 'http://code.google.com/p/innotop/'
md5 'af3e5c044912a9dfc7860d66a1a51bd4'
depends_on 'DBD::mysql' => :perl
def install
system "perl", "Makefile.PL", "PREFIX=#{prefix}"
system "make install"
end
end
|