mas/Homebrew/mas-tap.rb

44 lines
2 KiB
Ruby
Raw Normal View History

class Mas < Formula
desc "Mac App Store command-line interface"
homepage "https://github.com/mas-cli/mas"
2018-10-21 04:34:49 +00:00
url "https://github.com/mas-cli/mas.git",
tag: "v1.8.3",
revision: "aeeb1c508e98d657769ef4e368a113be7822d92e"
license "MIT"
head "https://github.com/mas-cli/mas.git"
bottle do
root_url "https://github.com/mas-cli/mas/releases/download/v1.8.3"
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_monterey: "3be8fedcbe67571100d0ec45f9ed4d68a22db93e406806a4365568138dd33bb7"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "3be8fedcbe67571100d0ec45f9ed4d68a22db93e406806a4365568138dd33bb7"
sha256 cellar: :any_skip_relocation, monterey: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
sha256 cellar: :any_skip_relocation, big_sur: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
sha256 cellar: :any_skip_relocation, catalina: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
sha256 cellar: :any_skip_relocation, mojave: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
sha256 cellar: :any_skip_relocation, high_sierra: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
sha256 cellar: :any_skip_relocation, sierra: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
sha256 cellar: :any_skip_relocation, el_capitan: "6b960f09c2214e4ff48d60b88147bcc0cdde5e2916c085d4fcfc622b7ef89b6b"
end
depends_on :macos
if Hardware::CPU.arm?
depends_on xcode: ["12.2", :build]
else
depends_on xcode: ["12.0", :build]
end
def install
system "script/build", "--universal"
system "script/install", "--universal", prefix
bash_completion.install "contrib/completion/mas-completion.bash" => "mas"
2019-01-29 22:20:16 +00:00
fish_completion.install "contrib/completion/mas.fish"
end
test do
assert_equal version.to_s, shell_output("#{bin}/mas version").chomp
2021-05-07 04:19:37 +00:00
assert_includes shell_output("#{bin}/mas info 497799835"), "Xcode"
end
end