Revert "Update Homebrew-Cask references."
This reverts commit 4475651b548afdcf15c4cf7a7cb57baca1885186.
This commit is contained in:
parent
4475651b54
commit
c4222141ac
@ -7,7 +7,7 @@ about: Submit an issue so we can investigate
|
||||
**Please note we will close your issue without comment if you delete, do not read or do not fill out the issue checklist below and provide ALL the requested information. If you repeatedly fail to use the issue template, we will block you from ever submitting issues to Homebrew again.**
|
||||
|
||||
- [ ] are reporting a bug others will be able to reproduce and not asking a question. If you're not sure or want to ask a question do so on our Discourse: https://discourse.brew.sh
|
||||
- [ ] ran a `brew` command and reproduced the problem with multiple formulae? If it's a problem with a single, official formula (not cask) please file this issue at Homebrew/homebrew-core: https://github.com/Homebrew/homebrew-core/issues/new/choose. If it's a `brew cask` problem please file this issue at https://github.com/Homebrew/homebrew-cask/issues/new/choose. If it's a tap (e.g. Homebrew/homebrew-php) problem please file this issue at the tap.
|
||||
- [ ] ran a `brew` command and reproduced the problem with multiple formulae? If it's a problem with a single, official formula (not cask) please file this issue at Homebrew/homebrew-core: https://github.com/Homebrew/homebrew-core/issues/new/choose. If it's a `brew cask` problem please file this issue at https://github.com/caskroom/homebrew-cask/issues/new/choose. If it's a tap (e.g. Homebrew/homebrew-php) problem please file this issue at the tap.
|
||||
- [ ] ran `brew update` and can still reproduce the problem?
|
||||
- [ ] ran `brew doctor`, fixed all issues and can still reproduce the problem?
|
||||
- [ ] ran `brew config` and `brew doctor` and included their output with your issue?
|
||||
|
@ -61,7 +61,7 @@ module Hbc
|
||||
|
||||
tap = @cask.tap
|
||||
return if tap.nil?
|
||||
return if tap.user != "Homebrew"
|
||||
return unless ["Homebrew", "caskroom"].include?(tap.user)
|
||||
|
||||
return unless cask.artifacts.any? { |k| k.is_a?(Hbc::Artifact::Pkg) && k.stanza_options.key?(:allow_untrusted) }
|
||||
add_warning "allow_untrusted is not permitted in official Homebrew-Cask taps"
|
||||
@ -133,7 +133,7 @@ module Hbc
|
||||
return unless previous_cask.version == cask.version
|
||||
return if previous_cask.sha256 == cask.sha256
|
||||
|
||||
add_error "only sha256 changed (see: https://github.com/Homebrew/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/sha256.md)"
|
||||
add_error "only sha256 changed (see: https://github.com/caskroom/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/sha256.md)"
|
||||
rescue CaskError => e
|
||||
add_warning "Skipped version and checksum comparison. Reading previous version failed: #{e}"
|
||||
end
|
||||
@ -250,7 +250,7 @@ module Hbc
|
||||
return if cask.appcast
|
||||
return unless cask.url.to_s =~ %r{github.com/([^/]+)/([^/]+)/releases/download/(\S+)}
|
||||
|
||||
add_warning "Cask uses GitHub releases, please add an appcast. See https://github.com/Homebrew/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/appcast.md"
|
||||
add_warning "Cask uses GitHub releases, please add an appcast. See https://github.com/caskroom/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/appcast.md"
|
||||
end
|
||||
|
||||
def check_url
|
||||
@ -261,9 +261,9 @@ module Hbc
|
||||
def check_download_url_format
|
||||
odebug "Auditing URL format"
|
||||
if bad_sourceforge_url?
|
||||
add_warning "SourceForge URL format incorrect. See https://github.com/Homebrew/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/url.md#sourceforgeosdn-urls"
|
||||
add_warning "SourceForge URL format incorrect. See https://github.com/caskroom/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/url.md#sourceforgeosdn-urls"
|
||||
elsif bad_osdn_url?
|
||||
add_warning "OSDN URL format incorrect. See https://github.com/Homebrew/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/url.md#sourceforgeosdn-urls"
|
||||
add_warning "OSDN URL format incorrect. See https://github.com/caskroom/homebrew-cask/blob/master/doc/cask_language_reference/stanzas/url.md#sourceforgeosdn-urls"
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -21,7 +21,7 @@ module Hbc
|
||||
def self.search_remote(query)
|
||||
matches = begin
|
||||
GitHub.search_code(
|
||||
user: "Homebrew",
|
||||
user: ["Homebrew", "caskroom"],
|
||||
path: "Casks",
|
||||
filename: query,
|
||||
extension: "rb",
|
||||
|
@ -100,7 +100,7 @@ module Hbc
|
||||
<<~EOS
|
||||
#{@cask} requires Java #{java_version}. You can install it with
|
||||
|
||||
brew cask install homebrew/cask-versions/java#{java_version}
|
||||
brew cask install caskroom/versions/java#{java_version}
|
||||
EOS
|
||||
end
|
||||
end
|
||||
@ -150,7 +150,7 @@ module Hbc
|
||||
If this report is accurate, please duplicate it at
|
||||
#{Formatter.url("https://bugreport.apple.com/")}
|
||||
If this report is a mistake, please let us know by opening an issue at
|
||||
#{Formatter.url("https://github.com/Homebrew/homebrew-cask/issues/new")}
|
||||
#{Formatter.url("https://github.com/caskroom/homebrew-cask/issues/new")}
|
||||
EOS
|
||||
end
|
||||
end
|
||||
|
@ -17,7 +17,7 @@ module Hbc
|
||||
attr_writer :default_tap
|
||||
|
||||
def default_tap
|
||||
@default_tap ||= Tap.fetch("homebrew", "homebrew-cask")
|
||||
@default_tap ||= Tap.fetch("caskroom", "homebrew-cask")
|
||||
end
|
||||
|
||||
def tcc_db
|
||||
|
@ -2,7 +2,7 @@ require "yaml"
|
||||
require "open3"
|
||||
require "stringio"
|
||||
|
||||
BUG_REPORTS_URL = "https://github.com/Homebrew/homebrew-cask#reporting-bugs".freeze
|
||||
BUG_REPORTS_URL = "https://github.com/caskroom/homebrew-cask#reporting-bugs".freeze
|
||||
|
||||
# global methods
|
||||
|
||||
|
@ -110,7 +110,7 @@ module Homebrew
|
||||
|
||||
matches = begin
|
||||
GitHub.search_code(
|
||||
user: "Homebrew",
|
||||
user: ["Homebrew", "caskroom"],
|
||||
path: ["Formula", "HomebrewFormula", "Casks", "."],
|
||||
filename: query,
|
||||
extension: "rb",
|
||||
@ -122,7 +122,7 @@ module Homebrew
|
||||
matches.map do |match|
|
||||
filename = File.basename(match["path"], ".rb")
|
||||
tap = Tap.fetch(match["repository"]["full_name"])
|
||||
next if tap.installed? && !(tap.user == "Homebrew" && tap.repo.start_with?("cask"))
|
||||
next if tap.installed? && match["repository"]["owner"]["login"] != "caskroom"
|
||||
"#{tap.name}/#{filename}"
|
||||
end.compact
|
||||
end
|
||||
|
@ -470,7 +470,7 @@ class Reporter
|
||||
next unless tabs.first.tap == tap # skip if installed formula is not from this tap.
|
||||
new_tap = Tap.fetch(new_tap_name)
|
||||
# For formulae migrated to cask: Auto-install cask or provide install instructions.
|
||||
if new_tap_name.start_with?("homebrew/cask")
|
||||
if ["homebrew/cask", "caskroom/cask"].include?(new_tap_name)
|
||||
if new_tap.installed? && (HOMEBREW_PREFIX/"Caskroom").directory?
|
||||
ohai "#{name} has been moved to Homebrew-Cask."
|
||||
ohai "brew unlink #{name}"
|
||||
@ -489,7 +489,6 @@ class Reporter
|
||||
ohai "#{name} has been moved to Homebrew-Cask.", <<~EOS
|
||||
To uninstall the formula and install the cask run:
|
||||
brew uninstall --force #{name}
|
||||
brew tap #{new_tap_name}
|
||||
brew cask install #{new_name}
|
||||
EOS
|
||||
end
|
||||
|
@ -242,13 +242,13 @@ described above, the argument can take the form of:
|
||||
Homebrew-Cask also accepts three other forms in place of plain tokens:
|
||||
|
||||
* A fully-qualified token which includes the Tap name, e.g.
|
||||
`homebrew/cask-fonts/font-symbola`
|
||||
`caskroom/fonts/font-symbola`
|
||||
|
||||
* A fully-qualified pathname to a Cask file, e.g.
|
||||
`/usr/local/Library/Taps/homebrew/homebrew-cask/Casks/google-chrome.rb`
|
||||
`/usr/local/Library/Taps/caskroom/homebrew-cask/Casks/google-chrome.rb`
|
||||
|
||||
* A `curl`-retrievable URI to a Cask file, e.g.
|
||||
`https://raw.githubusercontent.com/Homebrew/homebrew-cask/f25b6babcd398abf48e33af3d887b2d00de1d661/Casks/google-chrome.rb`
|
||||
`https://raw.githubusercontent.com/caskroom/homebrew-cask/f25b6babcd398abf48e33af3d887b2d00de1d661/Casks/google-chrome.rb`
|
||||
|
||||
## ENVIRONMENT
|
||||
|
||||
@ -275,7 +275,7 @@ Other environment variables:
|
||||
|
||||
The Homebrew-Cask home page: <https://caskroom.github.io/>
|
||||
|
||||
The Homebrew-Cask GitHub page: <https://github.com/Homebrew/homebrew-cask>
|
||||
The Homebrew-Cask GitHub page: <https://github.com/caskroom/homebrew-cask>
|
||||
|
||||
`brew`(1), `curl`(1)
|
||||
|
||||
@ -288,7 +288,7 @@ Man page format based on `brew.1.md` from Homebrew.
|
||||
## BUGS
|
||||
|
||||
We still have bugs - and we are busy fixing them! If you have a problem, don't
|
||||
be shy about reporting it on our [GitHub issues page](https://github.com/Homebrew/homebrew-cask/issues?state=open).
|
||||
be shy about reporting it on our [GitHub issues page](https://github.com/caskroom/homebrew-cask/issues?state=open).
|
||||
|
||||
When reporting bugs, remember that Homebrew-Cask is an independent project from
|
||||
Homebrew. Do your best to direct bug reports to the appropriate project. If
|
||||
|
@ -65,7 +65,7 @@ With `--verbose` or `-v`, many commands print extra debugging information. Note
|
||||
Install macOS applications distributed as binaries.
|
||||
|
||||
|
||||
Homebrew/homebrew-cask <https://github.com/Homebrew/homebrew-cask>
|
||||
Caskroom/homebrew-cask <https://github.com/caskroom/homebrew-cask>
|
||||
|
||||
<%= homebrew_services.join("\n ").strip %>
|
||||
|
||||
|
@ -101,7 +101,7 @@ module Homebrew
|
||||
EOS
|
||||
break if new_tap_name == CoreTap.instance.name
|
||||
|
||||
install_cmd = if new_tap_name.start_with?("homebrew/cask")
|
||||
install_cmd = if new_tap_user == "caskroom" || (new_tap_user == "homebrew" && new_tap_repo.start_with?("cask"))
|
||||
"cask install"
|
||||
else
|
||||
"install"
|
||||
|
@ -57,7 +57,7 @@ class JavaRequirement < Requirement
|
||||
private
|
||||
|
||||
JAVA_CASK_MAP = {
|
||||
"1.8" => "homebrew/cask-versions/java8",
|
||||
"1.8" => "caskroom/versions/java8",
|
||||
"10.0" => "java",
|
||||
}.freeze
|
||||
|
||||
|
@ -1,14 +1,14 @@
|
||||
describe Hbc::CLI, :cask do
|
||||
it "lists the taps for Casks that show up in two taps" do
|
||||
listing = described_class.nice_listing(%w[
|
||||
homebrew/cask/adium
|
||||
homebrew/cask/google-chrome
|
||||
caskroom/cask/adium
|
||||
caskroom/cask/google-chrome
|
||||
passcod/homebrew-cask/adium
|
||||
])
|
||||
|
||||
expect(listing).to eq(%w[
|
||||
caskroom/cask/adium
|
||||
google-chrome
|
||||
homebrew/cask/adium
|
||||
passcod/cask/adium
|
||||
])
|
||||
end
|
||||
|
@ -26,7 +26,7 @@ describe Hbc::DSL, :cask do
|
||||
.*
|
||||
Unexpected method 'future_feature' called on Cask unexpected-method-cask\\.
|
||||
.*
|
||||
https://github.com/Homebrew/homebrew-cask#reporting-bugs
|
||||
https://github.com/caskroom/homebrew-cask#reporting-bugs
|
||||
EOS
|
||||
|
||||
expect {
|
||||
|
@ -1,7 +1,7 @@
|
||||
describe "brew cask", :integration_test, :needs_macos, :needs_network do
|
||||
describe "list" do
|
||||
it "returns a list of installed Casks" do
|
||||
setup_remote_tap("homebrew/cask")
|
||||
setup_remote_tap("caskroom/cask")
|
||||
|
||||
expect { brew "cask", "list" }.to be_a_success
|
||||
end
|
||||
|
@ -25,9 +25,9 @@ describe "brew search", :integration_test do
|
||||
end
|
||||
|
||||
it "falls back to a GitHub tap search when no formula is found", :needs_network, retry: 3 do
|
||||
setup_remote_tap "homebrew/cask"
|
||||
setup_remote_tap "caskroom/cask"
|
||||
|
||||
expect { brew "search", "homebrew/cask/firefox" }
|
||||
expect { brew "search", "caskroom/cask/firefox" }
|
||||
.to output(/firefox/).to_stdout
|
||||
.and output(/Searching/).to_stderr
|
||||
.and be_a_success
|
||||
|
@ -133,6 +133,7 @@ RSpec.configure do |config|
|
||||
HOMEBREW_PREFIX/"share",
|
||||
HOMEBREW_PREFIX/"opt",
|
||||
HOMEBREW_PREFIX/"Caskroom",
|
||||
HOMEBREW_LIBRARY/"Taps/caskroom",
|
||||
HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-cask",
|
||||
HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-bar",
|
||||
HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-bundle",
|
||||
|
@ -569,7 +569,7 @@ __brew_cask_complete_formulae ()
|
||||
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
local lib=$(brew --repository)/Library
|
||||
local taps=${lib}/Taps
|
||||
local casks=${lib}/Taps/homebrew/homebrew-cask/Casks
|
||||
local casks=${lib}/Taps/caskroom/homebrew-cask/Casks
|
||||
local ff=$(\ls ${casks} 2>/dev/null | \sed 's/\.rb//g')
|
||||
|
||||
COMPREPLY=($(compgen -W "$ff" -- "$cur"))
|
||||
@ -585,7 +585,7 @@ __brew_cask_complete_installed ()
|
||||
__brew_cask_complete_caskroom ()
|
||||
{
|
||||
local cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
local caskroom_dir="$(brew --prefix)/Caskroom/"
|
||||
local caskroom_dir=/opt/homebrew-cask/Caskroom/
|
||||
local files=$(\ls ${caskroom_dir} 2>/dev/null)
|
||||
COMPREPLY=($(compgen -W "$files" -- "$cur"))
|
||||
}
|
||||
@ -721,7 +721,7 @@ _brew_cask ()
|
||||
done
|
||||
|
||||
if [[ $i -eq $COMP_CWORD ]]; then
|
||||
__brew_caskcomp "abv audit cat cleanup create doctor edit fetch home info install list ls outdated reinstall remove rm search style uninstall upgrade zap -S --force --verbose --appdir --colorpickerdir --prefpanedir --qlplugindir --fontdir --servicedir --input_methoddir --internet_plugindir --screen_saverdir --no-binaries --debug --version"
|
||||
__brew_caskcomp "abv audit cat cleanup create doctor edit fetch home info install list ls outdated reinstall remove rm search style uninstall upgrade zap -S --force --caskroom --verbose --appdir --colorpickerdir --prefpanedir --qlplugindir --fontdir --servicedir --input_methoddir --internet_plugindir --screen_saverdir --no-binaries --debug --version"
|
||||
return
|
||||
fi
|
||||
|
||||
|
@ -13,7 +13,7 @@ zstyle -T ':completion:*:*:*:brew-cask:*' tag-order && \
|
||||
zstyle ':completion:*:*:*:brew-cask:*' tag-order 'commands'
|
||||
|
||||
__brew_cask() {
|
||||
[ -d "$(brew --repo homebrew/cask)" ] && brew cask $@
|
||||
[ -d "$(brew --repo caskroom/cask)" ] && brew cask $@
|
||||
}
|
||||
|
||||
__brew_all_casks() {
|
||||
|
@ -23,7 +23,7 @@ Our policy is that formulae in the core tap
|
||||
([homebrew/core](https://github.com/Homebrew/homebrew-core)) must be open-source
|
||||
and either built from source or produce cross-platform binaries (e.g. Java, Mono).
|
||||
Binary-only formulae should go to
|
||||
[Homebrew Cask](https://github.com/Homebrew/homebrew-cask).
|
||||
[Homebrew Cask](https://github.com/caskroom/homebrew-cask).
|
||||
|
||||
### Stable versions
|
||||
Formulae in the core repository must have a stable version tagged by
|
||||
@ -57,7 +57,7 @@ running a package manager.
|
||||
|
||||
### Stuff that builds an `.app`
|
||||
Don’t make your formula build an `.app` (native macOS Application); we
|
||||
don’t want those things in Homebrew. Encourage upstream projects to build and support a `.app` that can be distributed by [Homebrew Cask](https://github.com/Homebrew/homebrew-cask) (and used without it, too).
|
||||
don’t want those things in Homebrew. Encourage upstream projects to build and support a `.app` that can be distributed by [Homebrew Cask](https://github.com/caskroom/homebrew-cask) (and used without it, too).
|
||||
|
||||
### Stuff that builds a GUI by default (but doesn't have to)
|
||||
Make it build a command-line tool or a library by default and, if the GUI is useful and would be widely used, add an option to build the GUI. Don't offer an option for multiple GUI backends e.g. X11 is a bad user experience for GUIs on macOS.
|
||||
|
@ -12,7 +12,7 @@ A formula is a package definition written in Ruby. It can be created with `brew
|
||||
| **Cellar** | All **Kegs** are installed here | `/usr/local/Cellar` |
|
||||
| **Tap** | A Git repository of **Formulae** and/or commands | `/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core` |
|
||||
| **Bottle** | Pre-built **Keg** used instead of building from source | `qt-4.8.4.mavericks.bottle.tar.gz` |
|
||||
| **Cask** | An [extension of homebrew](https://github.com/Homebrew/homebrew-cask) to install macOS native apps | `/Applications/MacDown.app/Contents/SharedSupport/bin/macdown` |
|
||||
| **Cask** | An [extension of homebrew](https://github.com/caskroom/homebrew-cask) to install macOS native apps | `/Applications/MacDown.app/Contents/SharedSupport/bin/macdown` |
|
||||
| **Brew Bundle**| An [extension of homebrew](https://github.com/Homebrew/homebrew-bundle) to describe dependencies | `brew 'myservice', restart_service: true` |
|
||||
|
||||
## An introduction
|
||||
|
@ -1005,7 +1005,7 @@ With `--verbose` or `-v`, many commands print extra debugging information. Note
|
||||
Install macOS applications distributed as binaries.
|
||||
|
||||
|
||||
Homebrew/homebrew-cask <https://github.com/Homebrew/homebrew-cask>
|
||||
Caskroom/homebrew-cask <https://github.com/caskroom/homebrew-cask>
|
||||
|
||||
* `services` `command`:
|
||||
|
||||
|
@ -17,7 +17,7 @@ Follow these steps to fix common problems:
|
||||
## Check to see if the issue has been reported
|
||||
|
||||
* Search the [issue tracker](https://github.com/Homebrew/homebrew-core/issues) to see if someone else has already reported the same issue.
|
||||
* Make sure you search issues on the correct repository. If a formula that has failed to build is part of a non-homebrew-core tap or a cask is part of [Homebrew/cask](https://github.com/Homebrew/homebrew-cask/issues) check those issue trackers instead.
|
||||
* Make sure you search issues on the correct repository. If a formula that has failed to build is part of a non-homebrew-core tap or a cask is part of [caskroom/cask](https://github.com/caskroom/homebrew-cask/issues) check those issue trackers instead.
|
||||
|
||||
## Create an issue
|
||||
|
||||
|
@ -270,13 +270,13 @@ A token as returned by \fBbrew cask search\fR, e\.g\. \fBgoogle\-chrome\fR
|
||||
Homebrew\-Cask also accepts three other forms in place of plain tokens:
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
A fully\-qualified token which includes the Tap name, e\.g\. \fBhomebrew/cask\-fonts/font\-symbola\fR
|
||||
A fully\-qualified token which includes the Tap name, e\.g\. \fBcaskroom/fonts/font\-symbola\fR
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
A fully\-qualified pathname to a Cask file, e\.g\. \fB/usr/local/Library/Taps/homebrew/homebrew\-cask/Casks/google\-chrome\.rb\fR
|
||||
A fully\-qualified pathname to a Cask file, e\.g\. \fB/usr/local/Library/Taps/caskroom/homebrew\-cask/Casks/google\-chrome\.rb\fR
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
A \fBcurl\fR\-retrievable URI to a Cask file, e\.g\. \fBhttps://raw\.githubusercontent\.com/Homebrew/homebrew\-cask/f25b6babcd398abf48e33af3d887b2d00de1d661/Casks/google\-chrome\.rb\fR
|
||||
A \fBcurl\fR\-retrievable URI to a Cask file, e\.g\. \fBhttps://raw\.githubusercontent\.com/caskroom/homebrew\-cask/f25b6babcd398abf48e33af3d887b2d00de1d661/Casks/google\-chrome\.rb\fR
|
||||
.
|
||||
.IP "" 0
|
||||
.
|
||||
@ -312,7 +312,7 @@ When this variable is set, Homebrew\-Cask will call \fBsudo\fR(8) with the \fB\-
|
||||
The Homebrew\-Cask home page: \fIhttps://caskroom\.github\.io/\fR
|
||||
.
|
||||
.P
|
||||
The Homebrew\-Cask GitHub page: \fIhttps://github\.com/Homebrew/homebrew\-cask\fR
|
||||
The Homebrew\-Cask GitHub page: \fIhttps://github\.com/caskroom/homebrew\-cask\fR
|
||||
.
|
||||
.P
|
||||
\fBbrew\fR(1), \fBcurl\fR(1)
|
||||
@ -324,7 +324,7 @@ Paul Hinze and Contributors\.
|
||||
Man page format based on \fBbrew\.1\.md\fR from Homebrew\.
|
||||
.
|
||||
.SH "BUGS"
|
||||
We still have bugs \- and we are busy fixing them! If you have a problem, don\'t be shy about reporting it on our GitHub issues page \fIhttps://github\.com/Homebrew/homebrew\-cask/issues?state=open\fR\.
|
||||
We still have bugs \- and we are busy fixing them! If you have a problem, don\'t be shy about reporting it on our GitHub issues page \fIhttps://github\.com/caskroom/homebrew\-cask/issues?state=open\fR\.
|
||||
.
|
||||
.P
|
||||
When reporting bugs, remember that Homebrew\-Cask is an independent project from Homebrew\. Do your best to direct bug reports to the appropriate project\. If your command\-line started with \fBbrew cask\fR, bring the bug to us first!
|
||||
|
@ -1029,7 +1029,7 @@ Homebrew/homebrew\-bundle \fIhttps://github\.com/Homebrew/homebrew\-bundle\fR
|
||||
Install macOS applications distributed as binaries\.
|
||||
.
|
||||
.P
|
||||
Homebrew/homebrew\-cask \fIhttps://github\.com/Homebrew/homebrew\-cask\fR
|
||||
Caskroom/homebrew\-cask \fIhttps://github\.com/caskroom/homebrew\-cask\fR
|
||||
.
|
||||
.TP
|
||||
\fBservices\fR \fIcommand\fR:
|
||||
|
Loading…
x
Reference in New Issue
Block a user