24 lines
883 B
Plaintext
24 lines
883 B
Plaintext
# Documentation: https://docs.brew.sh/Formula-Cookbook
|
|
# https://rubydoc.brew.sh/Formula
|
|
class Gman < Formula
|
|
desc "Universal command line credential management and injection tool"
|
|
homepage "https://github.com/Dark-Alex-17/gman"
|
|
if OS.mac? and Hardware::CPU.arm?
|
|
url "https://github.com/Dark-Alex-17/gman/releases/download/v$version/gman-aarch64-apple-darwin.tar.gz"
|
|
sha256 "$hash_mac_arm"
|
|
elsif OS.mac? and Hardware::CPU.intel?
|
|
url "https://github.com/Dark-Alex-17/gman/releases/download/v$version/gman-x86_64-apple-darwin.tar.gz"
|
|
sha256 "$hash_mac"
|
|
else
|
|
url "https://github.com/Dark-Alex-17/gman/releases/download/v$version/gman-x86_64-unknown-linux-musl.tar.gz"
|
|
sha256 "$hash_linux"
|
|
end
|
|
version "$version"
|
|
license "MIT"
|
|
|
|
def install
|
|
bin.install "gman"
|
|
ohai "You're done! Get started with \"gman --help\""
|
|
end
|
|
end
|