Skip to content

Commit

Permalink
feat(tad): add arm64 arch
Browse files Browse the repository at this point in the history
fix(tad): add minimum OS version
  • Loading branch information
pulsation authored and Philippe Sam-Long committed May 1, 2024
1 parent ff1bd03 commit c80a03f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Casks/t/tad.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
cask "tad" do
arch arm: "aarch64", intel: "x86-64"
suffix = on_arch_conditional arm: "-arm64", intel: ""

version "0.13.0"
sha256 "4c71f6f6a0fadf65891663d1a0462dd8d3576a4c62bdd8721012cbdd61ee1fee"
sha256 intel: "4c71f6f6a0fadf65891663d1a0462dd8d3576a4c62bdd8721012cbdd61ee1fee",
arm: "9c129a65fdf94b4b32b6e26d8836a56d4284bff9a6e1df657cc23d19e5c802b1"

url "https://github.com/antonycourtney/tad/releases/download/v#{version}/Tad-#{version}.dmg",
url "https://github.com/antonycourtney/tad/releases/download/v#{version}/Tad-#{version}#{suffix}.dmg",
verified: "github.com/antonycourtney/tad/"
name "Tad"
desc "Desktop application for viewing and analyzing tabular data"
Expand All @@ -13,6 +17,8 @@
strategy :github_latest
end

depends_on macos: ">= :catalina"

app "Tad.app"
binary "#{appdir}/Tad.app/Contents/Resources/tad.sh", target: "tad"

Expand Down

0 comments on commit c80a03f

Please sign in to comment.