homebrew-core/Formula/pass.rb
Emanuel Evans a8a17e7b34 pass: use any gpgtools.
The homebrew-provided version of GPG is quite difficult to configure,
and Homebrew Cask provides a nice option to install GPGTools (which
takes care of a lot of configuration). This changes the pass formula to
skip installing the Homebrew gnupg2 package if gpg is already installed
through some other method (most likely GPGTools).

Closes Homebrew/homebrew#33684.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-31 10:00:26 +00:00

49 lines
1.4 KiB
Ruby

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