
`brew cask list` supports the `--full-name` flag which will include the tap name for casks not part of the core caskroom/cask tap. For example, if cask "foo-beta" is installed from the caskroom/versions cask, `brew cask list --full-name` will report the name as "caskroom/versions/foo-beta".
10 lines
225 B
Ruby
10 lines
225 B
Ruby
cask 'third-party-cask' do
|
|
version '1.2.3'
|
|
sha256 '8c62a2b791cf5f0da6066a0a4b6e85f62949cd60975da062df44adf887f4370b'
|
|
|
|
url 'http://example.com/ThirdParty.dmg'
|
|
homepage 'http://example.com/'
|
|
|
|
app 'ThirdParty.app'
|
|
end
|