blob: 23bf0abc7baa2b87d344428459e24417005cd7ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
require 'formula'
class GpgRequirement < Requirement
fatal true
default_formula 'gnupg2'
satisfy do
%w(gpg gpg2).any? { |gpg| which gpg }
end
def message; <<-EOS.undent
pass requires GPG to be installed. Please install GPG in one of three ways:
- Install the gnupg2 package through Homebrew
- Install the gpgtools package through Homebrew Cask
- Download and install gpgtools from https://gpgtools.org/
EOS
end
end
class Pass < Formula
homepage 'http://www.passwordstore.org/'
url 'http://git.zx2c4.com/password-store/snapshot/password-store-1.6.3.tar.xz'
sha256 'd419d40aa165c1f893e994dd706733374a9db8cf5314124702a061e70e0340f7'
bottle do
cellar :any
sha1 "c7c430873e8272725a8f0cab1b9c50371d3bf9e4" => :mavericks
sha1 "1eb5751288c8d4eb3dd5d3a75451e913d38ce0c1" => :mountain_lion
sha1 "289089c797ae46fe7ef93e4755f3847ecd38098c" => :lion
end
head 'http://git.zx2c4.com/password-store', :using => :git
depends_on 'pwgen'
depends_on 'tree'
depends_on 'gnu-getopt'
depends_on GpgRequirement
def install
system "make DESTDIR=#{prefix} PREFIX=/ install"
share.install "contrib"
zsh_completion.install "src/completion/pass.zsh-completion" => "_pass"
bash_completion.install "src/completion/pass.bash-completion" => "password-store"
end
test do
system "#{bin}/pass", "--version"
end
end
|