-
Notifications
You must be signed in to change notification settings - Fork 188
/
rustwrap.yaml
33 lines (30 loc) · 1005 Bytes
/
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
32
33
# replace everything that starts with __V_
targets:
- platform: win32
arch: x64
url_template: https://github.com/tellerops/teller/releases/download/v__VERSION__/teller-x86_64-windows.zip
archive: dist/releases/teller-x86_64-windows.zip
- platform: linux
arch: x64
url_template: https://github.com/tellerops/teller/releases/download/v__VERSION__/teller-x86_64-linux.tar.xz
archive: dist/releases/teller-x86_64-linux.tar.xz
- platform: darwin
arch: arm64
url_template: https://github.com/tellerops/teller/releases/download/v__VERSION__/teller-aarch64-macos.tar.xz
archive: dist/releases/teller-aarch64-macos.tar.xz
brew:
name: teller
publish: false
s/homebrew-tap
recipe_fname: teller.rb
recipe_template: |
class Teller < Formula
desc "desc"
homepage "http://github.com/tellerops/teller"
url "__URL__[arm64]"
version "__VERSION__"
sha256 "__SHA__[arm64]"
def install
bin.install "teller"
end
end