-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: renamed
ockam_app
cask to ockam-app
- Loading branch information
1 parent
1c15c87
commit 3e72dd1
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
cask "ockam_app" do | ||
cask "ockam-app" do | ||
version "release_tag" | ||
name "Ockam App" | ||
name "Ockam" | ||
desc "End-to-end encryption and mutual authentication for distributed applications" | ||
homepage "https://github.com/build-trust/ockam" | ||
|
||
if Hardware::CPU.arm? | ||
url "https://github.com/build-trust/ockam/releases/download/release_tag/Ockam_App_aarch64-apple-darwin.dmg" | ||
sha256 "Ockam_App_aarch64-apple-darwin.dmg_sha256_value" | ||
url "https://github.com/build-trust/ockam/releases/download/release_tag/ockam.app.aarch64-apple-darwin.dmg" | ||
sha256 "ockam.app.aarch64-apple-darwin.dmg_sha256_value" | ||
end | ||
|
||
if Hardware::CPU.intel? | ||
url "https://github.com/build-trust/ockam/releases/download/release_tag/Ockam_App_x86_64-apple-darwin.dmg" | ||
sha256 "Ockam_App_x86_64-apple-darwin.dmg_sha256_value" | ||
url "https://github.com/build-trust/ockam/releases/download/release_tag/ockam.app.x86_64-apple-darwin.dmg" | ||
sha256 "ockam.app.x86_64-apple-darwin.dmg_sha256_value" | ||
end | ||
|
||
depends_on formula: "ockam" | ||
app "Ockam App.app" | ||
app "Ockam.app" | ||
uninstall quit: "io.ockam.app" | ||
end |