2021-02-18 19:13:19 +00:00
|
|
|
class YubikeyAgent < Formula
|
|
|
|
desc "Seamless ssh-agent for YubiKeys and other PIV tokens"
|
|
|
|
homepage "https://filippo.io/yubikey-agent"
|
|
|
|
url "https://github.com/FiloSottile/yubikey-agent/archive/v0.1.3.tar.gz"
|
|
|
|
sha256 "58c597551daf0c429d7ea63f53e72b464f8017f5d7f88965d4dae397ce2cb70a"
|
|
|
|
license "BSD-3-Clause"
|
|
|
|
head "https://filippo.io/yubikey-agent", using: :git
|
|
|
|
|
2021-02-20 07:31:42 +00:00
|
|
|
bottle do
|
|
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "05f61b09bdb5f3a2b3b52bb2a72cee1e017ec41995213fb498f4adb13138b6ff"
|
|
|
|
sha256 cellar: :any_skip_relocation, big_sur: "9304499290bd9b92e7381000785135fce3a1cc954b4eeb0a399cba49ff42b7c1"
|
|
|
|
sha256 cellar: :any_skip_relocation, catalina: "3e94f31622246f6fe44dfc5c82d2c2637e9f1bf86bc2bf4a5712e46ac7aaa155"
|
|
|
|
sha256 cellar: :any_skip_relocation, mojave: "cebabe028d63117d92e7eebbcc9c7f0661e5f624bbadb568782b29b11a147939"
|
|
|
|
end
|
|
|
|
|
2021-02-18 19:13:19 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
depends_on "pinentry-mac"
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "go", "build", *std_go_args, "-ldflags", "-X main.Version=v#{version}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_install
|
|
|
|
(var/"run").mkpath
|
|
|
|
(var/"log").mkpath
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<~EOS
|
|
|
|
To use this SSH agent, set this variable in your ~/.zshrc and/or ~/.bashrc:
|
|
|
|
export SSH_AUTH_SOCK="#{var}/run/yubikey-agent.sock"
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
plist_options manual: "yubikey-agent -l #{HOMEBREW_PREFIX}/var/run/yubikey-agent.sock"
|
|
|
|
|
|
|
|
def plist
|
|
|
|
<<~EOS
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>EnvironmentVariables</key>
|
|
|
|
<dict>
|
|
|
|
<key>PATH</key>
|
|
|
|
<string>/usr/bin:/bin:/usr/sbin:/sbin:#{Formula["pinentry-mac"].opt_bin}</string>
|
|
|
|
</dict>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>#{opt_bin}/yubikey-agent</string>
|
|
|
|
<string>-l</string>
|
|
|
|
<string>#{var}/run/yubikey-agent.sock</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key><true/>
|
|
|
|
<key>KeepAlive</key><true/>
|
|
|
|
<key>ProcessType</key>
|
|
|
|
<string>Background</string>
|
|
|
|
<key>StandardErrorPath</key>
|
|
|
|
<string>#{var}/log/yubikey-agent.log</string>
|
|
|
|
<key>StandardOutPath</key>
|
|
|
|
<string>#{var}/log/yubikey-agent.log</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
socket = testpath/"yubikey-agent.sock"
|
|
|
|
fork { exec bin/"yubikey-agent", "-l", socket }
|
|
|
|
sleep 1
|
|
|
|
assert_predicate socket, :exist?
|
|
|
|
end
|
|
|
|
end
|