aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pass.rb
blob: 255cce4b976cf118a246606e17133de90a589c32 (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
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 :gpg

  def install
    system "make", "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