blob: a49d41ceeb309bf1413136fa4e34d052c009ef20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Innotop < Formula
  homepage 'http://code.google.com/p/innotop/'
  url 'http://innotop.googlecode.com/files/innotop-1.9.1.tar.gz'
  sha1 '6b0b5f492e7188152727f6c157043be180ba516a'
  depends_on 'DBD::mysql' => :perl
  depends_on 'Term::ReadKey' => :perl
  def install
    system "perl", "Makefile.PL", "PREFIX=#{prefix}"
    system "make install"
  end
end
  |