16 lines
470 B
Ruby
16 lines
470 B
Ruby
require 'formula'
|
|
|
|
class Pwsafe < Formula
|
|
homepage 'http://nsd.dyndns.org/pwsafe/'
|
|
url 'http://downloads.sourceforge.net/project/pwsafe/pwsafe/0.2.0/pwsafe-0.2.0.tar.gz'
|
|
sha1 '026643a391796a527a48ffccf93d542113ca79d4'
|
|
|
|
depends_on 'readline'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|