-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathrustwrap.yaml
32 lines (30 loc) · 1.07 KB
/
rustwrap.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
repo: spectralops/keyscope
targets:
- platform: win32
arch: x64
url_template: https://github.com/spectralops/keyscope/releases/download/v__VERSION__/keyscope-x86_64-windows.zip
- platform: linux
arch: x64
url_template: https://github.com/spectralops/keyscope/releases/download/v__VERSION__/keyscope-x86_64-linux.tar.xz
- platform: darwin
arch: x64
url_template: https://github.com/spectralops/keyscope/releases/download/v__VERSION__/keyscope-x86_64-macos.tar.xz
- platform: darwin
arch: arm64
url_template: https://github.com/spectralops/keyscope/releases/download/v__VERSION__/keyscope-aarch64-macos.tar.xz
brew:
name: mm
publish: true
tap: spectralops/homebrew-tap
recipe_fname: keyscope.rb
recipe_template: |
class Keyscope < Formula
desc "Keyscope is a key and secret workflow (validation, invalidation, etc.) tool built in Rust"
homepage "http://github.com/spectralops/keyscope"
url "__URL__"
version "__VERSION__"
sha256 "__SHA__"
def install
bin.install "keyscope"
end
end