2009-10-17 13:25:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Bmon < Formula
|
2013-01-27 01:50:49 +00:00
|
|
|
homepage 'http://people.suug.ch/~tgr/bmon'
|
2010-09-30 17:35:08 +00:00
|
|
|
url 'http://mirrors.kernel.org/debian/pool/main/b/bmon/bmon_2.0.1.orig.tar.gz'
|
2011-09-19 15:51:54 +00:00
|
|
|
mirror 'http://ftp.us.debian.org/debian/pool/main/b/bmon/bmon_2.0.1.orig.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'ef6297bbd7a5f9a351e14b2b3e9f45157b136a9c'
|
2009-10-17 13:25:42 +00:00
|
|
|
|
|
|
|
def install
|
2011-03-11 04:34:57 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2009-10-17 13:25:42 +00:00
|
|
|
system "make" # two steps to prevent blowing up
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|