-
Notifications
You must be signed in to change notification settings - Fork 0
/
akash-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.4"
on_macos do
url "https://github.com/akash-network/provider/releases/download/v0.6.4/provider-services_darwin_all.zip"
sha256 "5021c22455d59c509f4f9735c823445f5109584eb768e9aff484a10994a547a2"
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.4/provider-services_linux_arm64.zip"
sha256 "d929c8365ba14bf8e8211a88e5c4c0008d55d5706a1d7b98e004c99f3e64ff03"
def install
bin.install "provider-services"
end
end
if Hardware::CPU.intel?
url "https://github.com/akash-network/provider/releases/download/v0.6.4/provider-services_linux_amd64.zip"
sha256 "d53de0e9b85bcca85ce57eb42002bd24f6a5e8cf03f25af48fb0f769f0966727"
def install
bin.install "provider-services"
end
end
end
end