homebrew-core/Formula/mrtg.rb
Caius Durling c1e3f4c3f3 MRTG 2.17.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-10-21 20:15:13 -07:00

14 lines
297 B
Ruby

require 'formula'
class Mrtg < Formula
url 'http://oss.oetiker.ch/mrtg/pub/mrtg-2.17.2.tar.gz'
homepage 'http://oss.oetiker.ch/mrtg/'
md5 'f4c251ef883da2509188711eff4577ad'
depends_on 'gd'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end