Created
July 18, 2020 02:33
-
-
Save nanoxd/2cfaeb2d3d06ab4e8bbd81708e6f0ce2 to your computer and use it in GitHub Desktop.
Brew file for xcutil
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Xcutils < Formula | |
desc 'A collection of utilities that aid with the use of the Xcode CLI, packaged as a single SwiftPM Package.' | |
homepage 'https://github.com/JosephDuffy/xcutils' | |
url 'https://github.com/JosephDuffy/xcutils/archive/v0.1.2-rc2.tar.gz' | |
sha256 '82200150a8d6ce1e91f7258724716e52fb1c932e78bafb596d40e32388c39583' | |
license 'MIT' | |
version '0.1.2' | |
def install | |
system 'swift', 'build', | |
'--configuration', 'release', | |
'--disable-sandbox' | |
bin.install '.build/release/xcutils' | |
end | |
test do | |
system "#{bin}/xcutils", '-h' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment