Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 9 Casks: depends_on #40654

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Casks/cdock.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
name 'cDock2'
homepage 'https://w0lfschild.github.io/cdock'

depends_on cask: 'easysimbl'
depends_on macos: '>= :mavericks'
depends_on cask: 'easysimbl',
macos: '>= :mavericks'

app 'cDock.app'

Expand Down
4 changes: 2 additions & 2 deletions Casks/flashlight.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
homepage 'https://github.com/w0lfschild/Flashlight/'

auto_updates true
depends_on macos: '>= :yosemite'
depends_on cask: 'mysimbl'
depends_on cask: 'mysimbl',
macos: '>= :yosemite'

app 'Flashlight.app'
end
4 changes: 2 additions & 2 deletions Casks/fontforge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
name 'FontForge'
homepage 'https://fontforge.github.io/en-US/'

depends_on x11: true
depends_on macos: '>= :yosemite'
depends_on macos: '>= :yosemite',
x11: true

app 'FontForge.app'

Expand Down
4 changes: 2 additions & 2 deletions Casks/fugio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
name 'Fugio'
homepage 'https://www.bigfug.com/software/fugio/'

depends_on macos: '>= 10.9'
depends_on formula: [
'ffmpeg',
'fftw',
Expand All @@ -16,7 +15,8 @@
'portaudio',
'portmidi',
'snappy',
]
],
macos: '>= :mavericks'

suite 'Fugio'
end
4 changes: 2 additions & 2 deletions Casks/lazarus.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
name 'Lazarus'
homepage 'https://www.lazarus-ide.org/'

depends_on formula: 'fpc'
depends_on cask: 'fpcsrc'
depends_on cask: 'fpcsrc',
formula: 'fpc'

pkg 'lazarus.pkg'

Expand Down
6 changes: 3 additions & 3 deletions Casks/ncar-ncl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
name 'ncl'
homepage 'https://www.ncl.ucar.edu/'

depends_on cask: 'xquartz'
depends_on formula: 'gcc'
depends_on macos: '>= :el_capitan'
depends_on cask: 'xquartz',
formula: 'gcc',
macos: '>= :el_capitan'

artifact 'include', target: "#{HOMEBREW_PREFIX}/ncl-#{version}/include"
artifact 'bin', target: "#{HOMEBREW_PREFIX}/ncl-#{version}/bin"
Expand Down
4 changes: 2 additions & 2 deletions Casks/powershell.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
name 'PowerShell'
homepage 'https://github.com/PowerShell/PowerShell'

depends_on formula: 'openssl'
depends_on macos: '>= :sierra'
depends_on formula: 'openssl',
macos: '>= :sierra'

pkg "powershell-#{version}-osx.10.12-x64.pkg"

Expand Down
4 changes: 2 additions & 2 deletions Casks/qgis.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
name 'QGIS'
homepage 'http://www.kyngchaos.com/software/qgis'

depends_on cask: 'gdal-framework'
depends_on formula: 'homebrew/science/matplotlib'
depends_on cask: 'gdal-framework',
formula: 'homebrew/science/matplotlib'

pkg '4 Install QGIS.pkg'

Expand Down
4 changes: 2 additions & 2 deletions Casks/sonarr-menu.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
name 'Sonarr Menu'
homepage 'https://github.com/jefbarn/Sonarr-Menu/'

depends_on cask: 'sonarr'
depends_on macos: '>= :mavericks'
depends_on cask: 'sonarr',
macos: '>= :mavericks'

app 'Sonarr-Menu.app'

Expand Down