-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsheesy.rb
More file actions
23 lines (21 loc) · 836 Bytes
/
sheesy.rb
File metadata and controls
23 lines (21 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Sheesy < Formula
# '---> DO NOT EDIT <--- (this file was generated from ./etc/brew/sheesy.rb.in'
version '4.0.10'
desc "share secrets within teams to avoid plain-text secrets from day one"
homepage "https://github.com/share-secrets-safely/cli"
depends_on "gpgme"
if OS.mac?
url "https://github.com/share-secrets-safely/cli/releases/download/#{version}/sy-cli-Darwin-x86_64.tar.gz"
sha256 "752a66cb3a2b6186a22b47b093732aa17bac518231513d86a561e843c799f878"
elsif OS.linux?
url "https://github.com/share-secrets-safely/cli/releases/download/#{version}/sy-cli-Linux-x86_64.tar.gz"
sha256 "528c062e210d9566f479b50f7cac73e6a01d8145600628c810a480de34f0858d"
end
def install
bin.install "sy"
bin.install "sye"
bin.install "syv"
bin.install "syp"
bin.install "sys"
end
end