2014-09-18 11:05:21 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class GPGDependency < Requirement
|
|
|
|
fatal true
|
|
|
|
default_formula "gpg"
|
|
|
|
satisfy { which("gpg") || which("gpg2") }
|
|
|
|
end
|
|
|
|
|
|
|
|
class Keybase < Formula
|
|
|
|
homepage "https://keybase.io/"
|
2014-09-21 09:06:10 +00:00
|
|
|
url "https://github.com/keybase/node-client/archive/v0.6.2.tar.gz"
|
|
|
|
sha1 "709d40cc076578081715c243e1ca5d70d310aeea"
|
2014-09-18 11:05:21 +00:00
|
|
|
head "https://github.com/keybase/node-client.git"
|
|
|
|
|
|
|
|
depends_on "node"
|
|
|
|
depends_on GPGDependency
|
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
(bin/"keybase").write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
|
|
|
export KEYBASE_BIN="#{bin}/keybase"
|
|
|
|
exec "#{HOMEBREW_PREFIX}/opt/node/bin/node" "#{libexec}/bin/main.js" "$@"
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2014-09-21 09:06:10 +00:00
|
|
|
def caveats;<<-EOS.undent if which("gpg2") && !which("gpg")
|
|
|
|
Run below command if you use gpg2 as keybase's backend
|
|
|
|
keybase config gpg gpg2
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2014-09-18 11:05:21 +00:00
|
|
|
test do
|
|
|
|
system "#{bin}/keybase", "id", "maria"
|
|
|
|
end
|
|
|
|
end
|