752a1e31eb
Closes Homebrew/homebrew#30586.
32 lines
946 B
Ruby
32 lines
946 B
Ruby
require 'formula'
|
|
|
|
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 'gnupg2'
|
|
|
|
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
|