|
|
|
@ -5,28 +5,27 @@
|
|
|
|
|
class Wash < Formula
|
|
|
|
|
desc "WAsmcloud SHell - a comprehensive command-line tool for wasmCloud development"
|
|
|
|
|
homepage "https://wasmcloud.com/"
|
|
|
|
|
version "0.38.0"
|
|
|
|
|
version "0.42.0"
|
|
|
|
|
license "Apache-2.0"
|
|
|
|
|
|
|
|
|
|
bottle do
|
|
|
|
|
root_url "https://github.com/wasmCloud/homebrew-wasmcloud/releases/download/wash-0.38.0"
|
|
|
|
|
rebuild 1
|
|
|
|
|
sha256 cellar: :any_skip_relocation, ventura: "e6055453d52c9d7584ea27eb785c8b2fe1f48d108490ac90e8451fe55f4e4c63"
|
|
|
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "e5615366c029cabdc962b5c503d0a2faba2cf1eab0ae970ff4315bff1bc900c0"
|
|
|
|
|
root_url "https://github.com/wasmCloud/homebrew-wasmcloud/releases/download/wash-0.42.0"
|
|
|
|
|
sha256 cellar: :any_skip_relocation, ventura: "d8287b7fc6d37c2b51d09d7b4ed8378453cb3ac8e4664ed4fc425f3d6c66e9e1"
|
|
|
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "4618a6f060b64c3c8b284ff5c05f1dc7a363f32c23ab6f2d84f0702ee63b7ddb"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
on_macos do
|
|
|
|
|
on_intel do
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.38.0/wash-x86_64-apple-darwin"
|
|
|
|
|
sha256 "68b167bbadf17c3807f5b09d7b16287f543f4dc36557f998c307856c09d3aabb"
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-x86_64-apple-darwin"
|
|
|
|
|
sha256 "7fdb4f898035e91940ab442cce9f6bc2380d8aecee6e75c0e988e095c3f51c9f"
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
|
bin.install "wash-x86_64-apple-darwin" => "wash"
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
on_arm do
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.38.0/wash-aarch64-apple-darwin"
|
|
|
|
|
sha256 "7fdac7caa9eb3ce8f54447d2e35b37f578555de3ab39b26b59b08eb59e01e4cb"
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-aarch64-apple-darwin"
|
|
|
|
|
sha256 "ab9183194dd29d6eba77692bc017cbc2ea9108b734ddc19d51e74d8bf556aeec"
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
|
bin.install "wash-aarch64-apple-darwin" => "wash"
|
|
|
|
@ -37,8 +36,8 @@ class Wash < Formula
|
|
|
|
|
on_linux do
|
|
|
|
|
on_intel do
|
|
|
|
|
if Hardware::CPU.is_64_bit?
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.38.0/wash-x86_64-unknown-linux-musl"
|
|
|
|
|
sha256 "8bba2463f4e121fdbbebc4046aabe1ade54aa3bd72ba70a57ad4b0e0e657bec2"
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-x86_64-unknown-linux-musl"
|
|
|
|
|
sha256 "23e44f345ae314549ba04123b86eb63fc37c1026f43b8c08a7c9b618a80cba5c"
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
|
bin.install "wash-x86_64-unknown-linux-musl" => "wash"
|
|
|
|
@ -47,8 +46,8 @@ class Wash < Formula
|
|
|
|
|
end
|
|
|
|
|
on_arm do
|
|
|
|
|
if Hardware::CPU.is_64_bit?
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-cli-v0.38.0/wash-aarch64-unknown-linux-musl"
|
|
|
|
|
sha256 "bab4fad652eaa9bb1e890daa0478ec223aaf448fb72eb00e59014034a3bca345"
|
|
|
|
|
url "https://github.com/wasmCloud/wasmCloud/releases/download/wash-v0.42.0/wash-aarch64-unknown-linux-musl"
|
|
|
|
|
sha256 "058d59cd5f181ada6de763e82ab935e1ae0db943b6df607cef3cdb647d175029"
|
|
|
|
|
|
|
|
|
|
def install
|
|
|
|
|
bin.install "wash-aarch64-unknown-linux-musl" => "wash"
|
|
|
|
|