2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-11 11:32:25 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pwgen < Formula
|
2009-10-11 11:32:25 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/pwgen/pwgen/2.06/pwgen-2.06.tar.gz'
|
|
|
|
homepage 'http://pwgen.sourceforge.net/'
|
|
|
|
md5 '935aebcbe610fbc9de8125e7b7d71297'
|
|
|
|
|
|
|
|
def install
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}", "--mandir=#{man}"
|
2009-10-11 11:32:25 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|