-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathakash-provider-services.rb
34 lines (29 loc) · 1.1 KB
/
akash-provider-services.rb
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
34
# This file was generated by GitHub actions. DO NOT EDIT.
class AkashProviderServices < Formula
desc "Blockchain-powered decentralized compute platform"
homepage "https://akash.network"
version "0.6.5"
on_macos do
url "https://github.com/akash-network/provider/releases/download/v0.6.5/provider-services_darwin_all.zip"
sha256 "afd4533ac8a3ba403d3d4668e6e716f21072f93d3f3a3c5d9fb15adf03dea571"
def install
bin.install "provider-services"
end
end
on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/akash-network/provider/releases/download/v0.6.5/provider-services_linux_arm64.zip"
sha256 "08814b7e50dce1e35e517f705b9ae1fda3fcba6ac5dfff997c3796843c26d925"
def install
bin.install "provider-services"
end
end
if Hardware::CPU.intel?
url "https://github.com/akash-network/provider/releases/download/v0.6.5/provider-services_linux_amd64.zip"
sha256 "7b3e856f383438c5f0d25cd9e2c79267b3f1f295df465f0baaf724bbda6334c4"
def install
bin.install "provider-services"
end
end
end
end