2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-10 22:47:16 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mrtg < Formula
|
2009-10-10 22:47:16 +00:00
|
|
|
homepage 'http://oss.oetiker.ch/mrtg/'
|
2012-08-02 03:24:09 +00:00
|
|
|
url 'http://oss.oetiker.ch/mrtg/pub/mrtg-2.17.4.tar.gz'
|
|
|
|
sha1 '5ae0e659001c613b847237a6b223b26cb7a8ab0f'
|
2009-10-10 22:47:16 +00:00
|
|
|
|
|
|
|
depends_on 'gd'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|