blob: e354f13a8896fe00b603781038e4581da82ea96c (
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
31
32
33
34
35
36
|
require "formula"
class GPGDependency < Requirement
fatal true
default_formula "gpg"
satisfy { which("gpg") || which("gpg2") }
end
class Keybase < Formula
homepage "https://keybase.io/"
url "https://github.com/keybase/node-client/archive/v0.7.2.tar.gz"
sha1 "680574530bbe77ecdc1954057e5518240dd099c6"
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 "#{Formula["node"].opt_bin}/node" "#{libexec}/bin/main.js" "$@"
EOS
end
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
test do
system "#{bin}/keybase", "id", "maria"
end
end
|