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

class Pwgen < Formula
  url 'http://downloads.sourceforge.net/project/pwgen/pwgen/2.06/pwgen-2.06.tar.gz'
  homepage 'http://pwgen.sourceforge.net/'
  md5 '935aebcbe610fbc9de8125e7b7d71297'

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