mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
Update URLs.
This commit is contained in:
+3
-3
@@ -22,7 +22,7 @@ cask-repair --help
|
||||
cask-repair <outdated_cask>
|
||||
```
|
||||
|
||||
If there is a more complicated change, or there is a case where `cask-repair` fails (for example, where a Cask uses a [`url do` block](https://github.com/caskroom/homebrew-cask/blob/60531a2812005dd5f17dc92f3ce7419af3c5d019/Casks/audacity.rb#L5#L15) or the [`language` stanza](https://github.com/caskroom/homebrew-cask/blob/306b8fbd9502036f1ca742f70c569d8677b62403/Casks/firefox.rb#L4L74)), you can also follow the steps in [Adding a Cask](doc/development/adding_a_cask.md) to do the same thing manually. Remember to update the `version` and `shasum` values, as well as the appcast [`checkpoint`](doc/cask_language_reference/stanzas/appcast.md), if there is one.
|
||||
If there is a more complicated change, or there is a case where `cask-repair` fails (for example, where a Cask uses a [`url do` block](https://github.com/Homebrew/homebrew-cask/blob/60531a2812005dd5f17dc92f3ce7419af3c5d019/Casks/audacity.rb#L5#L15) or the [`language` stanza](https://github.com/Homebrew/homebrew-cask/blob/306b8fbd9502036f1ca742f70c569d8677b62403/Casks/firefox.rb#L4L74)), you can also follow the steps in [Adding a Cask](doc/development/adding_a_cask.md) to do the same thing manually. Remember to update the `version` and `shasum` values, as well as the appcast [`checkpoint`](doc/cask_language_reference/stanzas/appcast.md), if there is one.
|
||||
|
||||
|
||||
## Getting Set Up To Contribute
|
||||
@@ -35,7 +35,7 @@ For manual updates, you'll need to fork the repository and add your copy as a re
|
||||
|
||||
```bash
|
||||
$ github_user='<my-github-username>'
|
||||
$ cd "$(brew --repository)"/Library/Taps/caskroom/homebrew-cask
|
||||
$ cd "$(brew --repository)"/Library/Taps/Homebrew/homebrew-cask
|
||||
$ git remote add "${github_user}" "https://github.com/${github_user}/homebrew-cask"
|
||||
```
|
||||
|
||||
@@ -46,7 +46,7 @@ $ git remote add "${github_user}" "https://github.com/${github_user}/homebrew-ca
|
||||
|
||||
## Adding a Cask
|
||||
|
||||
Notice an application that's not in Homebrew-Cask yet? Make sure it's not yet in [Caskroom/versions](https://github.com/caskroom/homebrew-versions) or [Homebrew/core](https://github.com/Homebrew/homebrew-core) (can be searched with `brew search`). Mac App Store apps can't be installed via Homebrew-Cask, but check out [mas](https://github.com/argon/mas) for an alternative.
|
||||
Notice an application that's not in Homebrew-Cask yet? Make sure it's not yet in [Caskroom/versions](https://github.com/Homebrew/homebrew-cask-versions) or [Homebrew/core](https://github.com/Homebrew/homebrew-core) (can be searched with `brew search`). Mac App Store apps can't be installed via Homebrew-Cask, but check out [mas](https://github.com/argon/mas) for an alternative.
|
||||
|
||||
With a bit of work, you can create a Cask for it. [This document](doc/development/adding_a_cask.md) will walk you through creating a new Cask, testing it, and submitting it to us.
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ cask 'adobe-air-sdk' do
|
||||
'swcdepends',
|
||||
'swfdump',
|
||||
].each do |shimscript|
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
IO.write "#{staged_path}/bin/#{shimscript}.wrapper.sh", <<~EOS
|
||||
#!/bin/sh
|
||||
exec '#{staged_path}/bin/#{shimscript}' "$@"
|
||||
|
||||
@@ -7,11 +7,11 @@ cask 'adobe-photoshop-lightroom' do
|
||||
homepage 'https://www.adobe.com/products/photoshop-lightroom.html'
|
||||
|
||||
auto_updates true
|
||||
depends_on cask: 'caskroom/versions/adobe-photoshop-lightroom600'
|
||||
depends_on cask: 'homebrew/cask-versions/adobe-photoshop-lightroom600'
|
||||
|
||||
# staged_path not available in Installer/Uninstall Stanza, workaround by nesting with preflight/postflight
|
||||
# see https://github.com/caskroom/homebrew-cask/pull/8887
|
||||
# and https://github.com/caskroom/homebrew-versions/pull/296
|
||||
# see https://github.com/Homebrew/homebrew-cask/pull/8887
|
||||
# and https://github.com/Homebrew/homebrew-cask-versions/pull/296
|
||||
|
||||
preflight do
|
||||
processes = system_command '/bin/launchctl', args: ['list']
|
||||
|
||||
@@ -9,7 +9,7 @@ cask 'android-ndk' do
|
||||
|
||||
conflicts_with cask: 'crystax-ndk'
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/ndk_exec.sh"
|
||||
preflight do
|
||||
FileUtils.ln_sf("#{staged_path}/android-ndk-r#{version}", "#{HOMEBREW_PREFIX}/share/android-ndk")
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ cask 'armitage' do
|
||||
homepage 'http://www.fastandeasyhacking.com/'
|
||||
|
||||
app 'Armitage.app'
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/armitage.wrapper.sh"
|
||||
binary shimscript, target: 'armitage'
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ cask 'avast-security' do
|
||||
|
||||
uninstall script: {
|
||||
executable: '/Library/Application Support/Avast/hub/uninstall.sh',
|
||||
must_succeed: false, # A non-0 exit code may be given even if the uninstall succeeds (https://github.com/caskroom/homebrew-cask/issues/21740#issuecomment-224094946).
|
||||
must_succeed: false, # A non-0 exit code may be given even if the uninstall succeeds (https://github.com/Homebrew/homebrew-cask/issues/21740#issuecomment-224094946).
|
||||
sudo: true,
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ cask 'bandage' do
|
||||
homepage 'https://rrwick.github.io/Bandage/'
|
||||
|
||||
app 'Bandage.app'
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/bandage.wrapper.sh"
|
||||
binary shimscript, target: 'bandage'
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ cask 'blender' do
|
||||
# Renamed for consistency: app name is different in the Finder and in a shell.
|
||||
app "blender-#{version}-macOS-10.6/blender.app", target: 'Blender.app'
|
||||
app "blender-#{version}-macOS-10.6/blenderplayer.app", target: 'Blenderplayer.app'
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/blender.wrapper.sh"
|
||||
binary shimscript, target: 'blender'
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ cask 'cocoscreator' do
|
||||
name 'CocosCreator'
|
||||
homepage 'http://www.cocos2d-x.org/'
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/cocos.wrapper.sh"
|
||||
|
||||
app 'CocosCreator.app'
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@ cask 'copyq' do
|
||||
homepage 'https://hluk.github.io/CopyQ/'
|
||||
|
||||
app 'CopyQ.app'
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/copyq.wrapper.sh"
|
||||
binary shimscript, target: 'copyq'
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ cask 'crystax-ndk' do
|
||||
|
||||
conflicts_with cask: 'android-ndk'
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/ndk_exec.sh"
|
||||
preflight do
|
||||
FileUtils.ln_sf("#{staged_path}/crystax-ndk-#{version}", "#{HOMEBREW_PREFIX}/share/crystax-ndk")
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ cask 'decitime' do
|
||||
app 'DeciTime.app'
|
||||
|
||||
# fix wonky DMG by mounting it once read-write per discussion at
|
||||
# https://github.com/caskroom/homebrew-cask/pull/2654
|
||||
# https://github.com/Homebrew/homebrew-cask/pull/2654
|
||||
preflight do
|
||||
system %Q{/usr/bin/hdiutil eject "$(/usr/bin/hdiutil mount -readwrite -noidme -nobrowse -mountrandom /tmp #{staged_path.join(nested_container)} | /usr/bin/cut -f3 -- - | /usr/bin/grep -- '.' -)" >/dev/null 2>&1}
|
||||
end
|
||||
|
||||
@@ -13,6 +13,6 @@ cask 'devonthink-pro-office' do
|
||||
depends_on macos: '>= :mavericks'
|
||||
|
||||
# Renamed for consistency: app name is different in the Finder and in a shell.
|
||||
# Original discussion: https://github.com/caskroom/homebrew-cask/pull/3838
|
||||
# Original discussion: https://github.com/Homebrew/homebrew-cask/pull/3838
|
||||
app 'DEVONthink Pro.app', target: 'DEVONthink Pro Office.app'
|
||||
end
|
||||
|
||||
@@ -6,7 +6,7 @@ cask 'dwarf-fortress' do
|
||||
name 'Dwarf Fortress'
|
||||
homepage 'http://www.bay12games.com/dwarves/'
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/df_osx/df.wrapper.sh"
|
||||
binary shimscript, target: 'dwarf-fortress'
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ cask 'dynamodb-local' do
|
||||
name 'Amazon DynamoDB Local'
|
||||
homepage 'https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html'
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/dynamodb-local.wrapper.sh"
|
||||
binary shimscript, target: 'dynamodb-local'
|
||||
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ cask 'eventstore' do
|
||||
binary "EventStore-OSS-MacOSX-v#{version}/eventstore"
|
||||
binary "EventStore-OSS-MacOSX-v#{version}/eventstore-testclient"
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
eventstore_shimscript = "#{staged_path}/EventStore-OSS-MacOSX-v#{version}/eventstore"
|
||||
testclient_shimscript = "#{staged_path}/EventStore-OSS-MacOSX-v#{version}/eventstore-testclient"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ cask 'flymaster-designer' do
|
||||
homepage 'https://www.flymaster.net/'
|
||||
|
||||
# Renamed for clarity: app name is inconsistent with its branding.
|
||||
# Original discussion: https://github.com/caskroom/homebrew-cask/pull/9334
|
||||
# Original discussion: https://github.com/Homebrew/homebrew-cask/pull/9334
|
||||
app 'B2designer.app', target: 'Flymaster Designer.app'
|
||||
|
||||
uninstall quit: 'net.flymaster.designer'
|
||||
|
||||
+1
-1
@@ -8,6 +8,6 @@ cask 'futuniuniu' do
|
||||
homepage 'https://hk.futu5.com/'
|
||||
|
||||
# Renamed for consistency: app name is different in the Finder and in a shell.
|
||||
# Original discussion: https://github.com/caskroom/homebrew-cask/pull/7435
|
||||
# Original discussion: https://github.com/Homebrew/homebrew-cask/pull/7435
|
||||
app 'FutuNiuniu.app', target: '富途牛牛.app'
|
||||
end
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@ cask 'gogs' do
|
||||
name 'Go Git Service'
|
||||
homepage 'https://gogs.io/'
|
||||
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/gogs.wrapper.sh"
|
||||
|
||||
binary shimscript, target: 'gogs'
|
||||
|
||||
+1
-1
@@ -27,7 +27,7 @@ cask 'gqrx' do
|
||||
binary "#{appdir}/Gqrx.app/Contents/MacOS/rtl_test"
|
||||
binary "#{appdir}/Gqrx.app/Contents/MacOS/SoapySDRUtil", target: 'soapysdrutil'
|
||||
binary "#{appdir}/Gqrx.app/Contents/MacOS/volk_profile"
|
||||
# shim script (https://github.com/caskroom/homebrew-cask/issues/18809)
|
||||
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
|
||||
shimscript = "#{staged_path}/gqrx.wrapper.sh"
|
||||
binary shimscript, target: 'gqrx'
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user