Merge pull request #156669 from daveduthie/master

Install separate binaries for intel, arm
This commit is contained in:
Miccal Matthews 2023-10-02 16:40:08 +08:00 committed by GitHub
commit ae13749174
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 4 deletions

View File

@ -1,13 +1,16 @@
cask "zprint" do
version "1.2.8"
sha256 "03c146a2d411325114f38d211c3d4a9f2ab837b9287c46a7387114319253b2bd"
arch arm: "a"
url "https://github.com/kkinnear/zprint/releases/download/#{version}/zprintm-#{version}"
version "1.2.8"
sha256 arm: "11246e16db97cb03649bf67938455c7cb25a3326a7e99e45d019b0ae405d8c3d",
intel: "03c146a2d411325114f38d211c3d4a9f2ab837b9287c46a7387114319253b2bd"
url "https://github.com/kkinnear/zprint/releases/download/#{version}/zprintm#{arch}-#{version}"
name "zprint"
desc "Library to reformat Clojure and Clojurescript source code and s-expressions"
homepage "https://github.com/kkinnear/zprint"
binary "zprintm-#{version}", target: "zprint"
binary "zprintm#{arch}-#{version}", target: "zprint"
# No zap stanza required
end