-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrustwrap.yaml
31 lines (29 loc) · 936 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
targets:
- platform: win32
arch: x64
url_template: https://github.com/ngyn-rs/ngyn/releases/download/v__VERSION__/ngyn-x86_64-windows.zip
- platform: linux
arch: x64
url_template: https://github.com/ngyn-rs/ngyn/releases/download/v__VERSION__/ngyn-x86_64-linux.tar.xz
- platform: darwin
arch: x64
url_template: https://github.com/ngyn-rs/ngyn/releases/download/v__VERSION__/ngyn-x86_64-macos.tar.xz
- platform: darwin
arch: arm64
url_template: https://github.com/ngyn-rs/ngyn/releases/download/v__VERSION__/ngyn-aarch64-macos.tar.xz
brew:
name: ngyn
publish: true
tap: ngyn
recipe_fname: ngyn.rb
recipe_template: |
class NgynFormula < Formula
desc "A progressive backend framework for Rust"
homepage "https://github.com/ngyn-rs/ngyn"
url "__URL__"
version "__VERSION__"
sha256 "__SHA__"
def install
bin.install "ngyn"
end
end