aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/innotop.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/innotop.rb b/Library/Formula/innotop.rb
new file mode 100644
index 000000000..75cbce3a3
--- /dev/null
+++ b/Library/Formula/innotop.rb
@@ -0,0 +1,14 @@
+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