mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
48 lines
1.8 KiB
Ruby
48 lines
1.8 KiB
Ruby
class Mas < Formula
|
|
desc "Mac App Store command-line interface"
|
|
homepage "https://github.com/mas-cli/mas"
|
|
url "https://github.com/mas-cli/mas/archive/v1.4.2.tar.gz"
|
|
sha256 "f9a751ff84e6dcbaedd4b2ca95b3ca623c739fd3af0b6ca950c321f2ce840bfe"
|
|
head "https://github.com/mas-cli/mas.git"
|
|
|
|
bottle do
|
|
root_url "https://dl.bintray.com/phatblat/mas-bottles"
|
|
cellar :any_skip_relocation
|
|
sha256 "a99d0d7baecf45a00787365a2a078ae94068a0c63012e87f92282efb120e586e" => :el_capitan
|
|
sha256 "a99d0d7baecf45a00787365a2a078ae94068a0c63012e87f92282efb120e586e" => :high_sierra
|
|
sha256 "a99d0d7baecf45a00787365a2a078ae94068a0c63012e87f92282efb120e586e" => :mojave
|
|
sha256 "a99d0d7baecf45a00787365a2a078ae94068a0c63012e87f92282efb120e586e" => :sierra
|
|
sha256 "a99d0d7baecf45a00787365a2a078ae94068a0c63012e87f92282efb120e586e" => :yosemite
|
|
end
|
|
|
|
depends_on :xcode => ["9.3", :build]
|
|
|
|
resource "cocoapods" do
|
|
url "https://dl.bintray.com/phatblat/mas-bottles/master.tar.gz"
|
|
sha256 "fd8f1b06a2a0276c9005241b45cc19393b7c39cfc91d08da92a307ea2416e966"
|
|
end
|
|
|
|
def install
|
|
# Pre-install a shallow copy of the CocoaPods master repo
|
|
(buildpath/".brew_home/.cocoapods/repos/master").install resource("cocoapods")
|
|
|
|
# Install bundler, then use it to install gems used by project
|
|
ENV["GEM_HOME"] = buildpath/"gem_home"
|
|
system "gem", "install", "bundler"
|
|
ENV.prepend_path "PATH", buildpath/"gem_home/bin"
|
|
system "bundle", "install"
|
|
system "bundle", "exec", "pod", "install"
|
|
|
|
xcodebuild "-workspace", "mas-cli.xcworkspace",
|
|
"-scheme", "mas-cli Release",
|
|
"SYMROOT=#{buildpath.realpath}"
|
|
|
|
bin.install buildpath/"build/mas"
|
|
|
|
bash_completion.install "contrib/completion/mas-completion.bash" => "mas"
|
|
end
|
|
|
|
test do
|
|
assert_equal version.to_s, shell_output("#{bin}/mas version").chomp
|
|
end
|
|
end
|