aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mrtg.rb
blob: 58d07992a70860ad9fe0b9f27ca945d6b380d232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Mrtg <Formula
  url 'http://oss.oetiker.ch/mrtg/pub/mrtg-2.16.2.zip'
  homepage 'http://oss.oetiker.ch/mrtg/'
  md5 'c085b85d1f93f459cef9e889bf654fd5'

  depends_on 'gd'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end