homebrew-core/Formula/keybase.rb

23 lines
562 B
Ruby
Raw Normal View History

class Keybase < Formula
homepage "https://keybase.io/"
url "https://github.com/keybase/node-client/archive/v0.7.4.tar.gz"
sha1 "784062fd61a4f02fe8f877d67da5552af98f4ae7"
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