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

class Duff < Formula
  url 'http://downloads.sourceforge.net/project/duff/duff/0.5.2/duff-0.5.2.tar.gz'
  homepage 'http://duff.sourceforge.net/'
  md5 '483f9216ebea14b090e0d71dbf7077ff'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end