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

class Pwgen < Formula
  homepage 'http://pwgen.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/pwgen/pwgen/2.06/pwgen-2.06.tar.gz'
  sha1 '43dc4fbe6c3bdf96ae24b20d44c4a4584df93d8e'

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