54e42b9b4a
Closes Homebrew/homebrew#37027. Signed-off-by: Xu Cheng <xucheng@me.com>
22 lines
562 B
Ruby
22 lines
562 B
Ruby
class Keybase < Formula
|
|
homepage "https://keybase.io/"
|
|
url "https://github.com/keybase/node-client/archive/v0.7.7.tar.gz"
|
|
sha1 "360f0c621adb9f74bb74893880f42e09a6dd36c3"
|
|
head "https://github.com/keybase/node-client.git"
|
|
|
|
depends_on "node"
|
|
depends_on :gpg
|
|
|
|
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
|
|
|
|
test do
|
|
system "#{bin}/keybase", "id", "maria"
|
|
end
|
|
end
|