-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cask.toml
23 lines (20 loc) · 1.02 KB
/
Cask.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "github.com/axetroy/dvm"
bin = "dvm"
authors = ["Axetroy <axetroy.dev@gmail.com>"]
keywords = []
repository = "https://github.com/axetroy/dvm"
description = """
🚀 Fast and simple version manger for Deno without runtime dependencies.
"""
[darwin]
x86_64 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_darwin_amd64.tar.gz"
aarch64 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_darwin_arm64.tar.gz"
[windows]
x86 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_windows_386.tar.gz"
x86_64 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_windows_amd64.tar.gz"
aarch64 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_windows_arm64.tar.gz"
[linux]
x86 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_linux_386.tar.gz"
x86_64 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_linux_amd64.tar.gz"
aarch64 = "https://github.com/axetroy/dvm/releases/download/v{version}/dvm_linux_arm64.tar.gz"