homebrew-core/Formula/pass.rb
2017-02-26 21:05:53 +01:00

33 lines
1.2 KiB
Ruby

class Pass < Formula
desc "Password manager"
homepage "https://www.passwordstore.org/"
url "https://git.zx2c4.com/password-store/snapshot/password-store-1.7.tar.xz"
sha256 "161ac3bd3c452a97f134aa7aa4668fe3f2401c839fd23c10e16b8c0ae4e15500"
head "https://git.zx2c4.com/password-store", :using => :git
bottle do
cellar :any_skip_relocation
sha256 "02acc93c5b5d1fe7531f9c7288c0c893442e7f3d3d576ac9c0d0027210035a87" => :sierra
sha256 "02acc93c5b5d1fe7531f9c7288c0c893442e7f3d3d576ac9c0d0027210035a87" => :el_capitan
sha256 "02acc93c5b5d1fe7531f9c7288c0c893442e7f3d3d576ac9c0d0027210035a87" => :yosemite
end
depends_on "qrencode"
depends_on "tree"
depends_on "gnu-getopt"
depends_on :gpg => :run
def install
system "make", "PREFIX=#{prefix}", "WITH_ALLCOMP=yes", "BASHCOMPDIR=#{bash_completion}", "ZSHCOMPDIR=#{zsh_completion}", "FISHCOMPDIR=#{fish_completion}", "install"
elisp.install "contrib/emacs/password-store.el"
pkgshare.install "contrib"
end
test do
Gpg.create_test_key(testpath)
system bin/"pass", "init", "Testing"
system bin/"pass", "generate", "Email/testing@foo.bar", "15"
assert File.exist?(".password-store/Email/testing@foo.bar.gpg")
end
end