blob: 34ad1302d896cbeed1cee7f14d92be33c52c24e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|