From 99bbbd66cfed7eaec7d442537a18bea13f81437a Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Tue, 16 Oct 2018 22:00:03 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=F0=9F=8D=BA=20Revise=20formula=20t?= =?UTF-8?q?o=20run=20carthage=20and=20new=20scripts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Homebrew/mas.rb | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/Homebrew/mas.rb b/Homebrew/mas.rb index 0f70af2..08680ab 100644 --- a/Homebrew/mas.rb +++ b/Homebrew/mas.rb @@ -2,8 +2,9 @@ class Mas < Formula desc "Mac App Store command-line interface" homepage "https://github.com/mas-cli/mas" url "https://github.com/mas-cli/mas.git", - :tag => "v1.4.2", - :revision => "966872b32820c014a9004691f5da47f170702236", + :branch => "release-1.4.3", + # :tag => "v1.4.2", + # :revision => "966872b32820c014a9004691f5da47f170702236", :shallow => true head "https://github.com/mas-cli/mas.git", :shallow => true @@ -14,16 +15,24 @@ class Mas < Formula end depends_on :xcode => ["10.0", :build] + depends_on "carthage" => :build def install + # Prevent build failures from warnings + xcconfig = buildpath/"Overrides.xcconfig" + File.open(xcconfig, 'w') { |file| file.write("GCC_TREAT_WARNINGS_AS_ERRORS = NO") } + ENV["XCODE_XCCONFIG_FILE"] = xcconfig + + system "carthage", "bootstrap", "--platform", "macOS" xcodebuild "-project", "mas-cli.xcodeproj", "-scheme", "mas-cli Release", - "-configuration," "Release", + "-configuration",🛠️ "Release", + "OBJROOT=#{buildpath.realpath}", "SYMROOT=#{buildpath.realpath}" - bin.install buildpath/"build/mas" - # TODO: Move MasKit.frameworks to prefix/Frameworks + system "script/package" + system "script/install" bash_completion.install "contrib/completion/mas-completion.bash" => "mas" end