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

class Mrtg < Formula
  homepage 'http://oss.oetiker.ch/mrtg/'
  url 'http://oss.oetiker.ch/mrtg/pub/mrtg-2.17.4.tar.gz'
  sha1 '5ae0e659001c613b847237a6b223b26cb7a8ab0f'

  depends_on 'gd'

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