From 8567e8bcd3f64e9db5ec9bd747c1c57798351de6 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 12 Sep 2025 09:10:52 -0700 Subject: [PATCH] docs: clarify listed archive formats aren't exclusive Signed-off-by: Patrick Linnane --- docs/Adding-Software-to-Homebrew.md | 2 +- docs/Cask-Cookbook.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Adding-Software-to-Homebrew.md b/docs/Adding-Software-to-Homebrew.md index f6cb873c51..2c028e2ae6 100644 --- a/docs/Adding-Software-to-Homebrew.md +++ b/docs/Adding-Software-to-Homebrew.md @@ -185,7 +185,7 @@ Fill in the following stanzas for your cask: | ------------------ | ----------- | | `version` | application version | | `sha256` | SHA-256 checksum of the file downloaded from `url`, calculated by the command `shasum -a 256 `. Can be suppressed by using the special value `:no_check`. (see [`sha256` Stanza Details](Cask-Cookbook.md#stanza-sha256)) | -| `url` | URL to the `.dmg`/`.zip`/`.tgz`/`.tbz2` file that contains the application.
A [`verified` parameter](Cask-Cookbook.md#when-url-and-homepage-domains-differ-add-verified) must be added if the hostnames in the `url` and `homepage` stanzas differ. | +| `url` | URL to the `.dmg`/`.zip`/`.tgz` file (or other common archive formats) that contains the application.
A [`verified` parameter](Cask-Cookbook.md#when-url-and-homepage-domains-differ-add-verified) must be added if the hostnames in the `url` and `homepage` stanzas differ. | | `name` | the full and proper name defined by the vendor, and any useful alternate names (see [`name` Stanza Details](Cask-Cookbook.md#stanza-name)) | | `desc` | one-line description of the software (see [`desc` Stanza Details](Cask-Cookbook.md#stanza-desc)) | | `homepage` | application homepage; used for the `brew home` command | diff --git a/docs/Cask-Cookbook.md b/docs/Cask-Cookbook.md index 468f222e63..3edfbbca26 100644 --- a/docs/Cask-Cookbook.md +++ b/docs/Cask-Cookbook.md @@ -120,7 +120,7 @@ Each of the following stanzas is required for every cask. | ---------------------------------- | :---------------------------: | ----- | | [`version`](#stanza-version) | no | Application version, or the special value `:latest`. | | [`sha256`](#stanza-sha256) | no | SHA-256 checksum of the file downloaded from `url` as calculated by the command `shasum -a 256 `, or the special value `:no_check`. | -| [`url`](#stanza-url) | no | URL to the `.dmg`/`.zip`/`.tgz`/`.tbz2` file that contains the application. A [comment](#when-url-and-homepage-domains-differ-add-verified) should be added if the domains in the `url` and `homepage` stanzas differ. | +| [`url`](#stanza-url) | no | URL to the `.dmg`/`.zip`/`.tgz` file (or other common archive formats) that contains the application. A [comment](#when-url-and-homepage-domains-differ-add-verified) should be added if the domains in the `url` and `homepage` stanzas differ. | | [`name`](#stanza-name) | yes | String providing the full and proper name defined by the vendor. | | [`desc`](#stanza-desc) | no | One-line description of the cask. Shown when running `brew info`. | | `homepage` | no | Application homepage; used for the `brew home` command. |