aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pipemeter.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/pipemeter.rb b/Library/Formula/pipemeter.rb
new file mode 100644
index 000000000..33ce03585
--- /dev/null
+++ b/Library/Formula/pipemeter.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Pipemeter < Formula
+ homepage 'https://launchpad.net/pipemeter'
+ url 'https://launchpad.net/pipemeter/trunk/1.1.3/+download/pipemeter-1.1.3.tar.gz'
+ sha1 '8fe224b0cf77e9f3932f46fed0af5acc6547cd0c'
+
+ def install
+ system "./configure", "--disable-debug", "--prefix=#{prefix}", "--mandir=#{man}"
+ system "make"
+ bin.install "pipemeter"
+ man1.install "pipemeter.1"
+ end
+end