bwm-ng 0.6

Bandwidth Monitor NG is a small and simple console-based live network
and disk io bandwidth monitor.
This commit is contained in:
spahl 2010-01-24 13:07:01 +01:00 committed by Max Howell
parent 9e46d77f65
commit eeeb1db72e

12
Formula/bwm-ng.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class BwmNg <Formula
url 'http://www.gropp.org/bwm-ng/bwm-ng-0.6.tar.gz'
homepage 'http://www.gropp.org/?id=projects&sub=bwm-ng'
md5 'd3a02484fb7946371bfb4e10927cebfb'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end