Skip to content

Instantly share code, notes, and snippets.

@nanoxd
Created July 18, 2020 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanoxd/2cfaeb2d3d06ab4e8bbd81708e6f0ce2 to your computer and use it in GitHub Desktop.
Save nanoxd/2cfaeb2d3d06ab4e8bbd81708e6f0ce2 to your computer and use it in GitHub Desktop.
Brew file for xcutil
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