mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
Per the discussion on caskroom/homebrew-cask#8844, Lingon X v1.0 will be moved to caskroom/homebrew-versions and v2.0 will replace v1.0 here (+2 squashed commits) [280f122] Add OS version conditional to Lingon X Cask Added a conditional to determine if we should install Lingon 1 or Lingon 2 depending on the user's version of OS X. [80d3909] Add Lingon X.app v2.0 Lingon X version 1.0 already exists as lingon-x but Lingon X 2.0 is an entirely new version of Lingon X which only runs on Yosemite 10.10 or higher. In my opinion, Lingon X 1.0 is still a valid Cask for this very reason, and I think including 2.0 as lingon-x2 is the best way to handle this updated version.
13 lines
331 B
Ruby
13 lines
331 B
Ruby
cask :v1 => 'lingon-x' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url 'http://www.peterborgapps.com/downloads/LingonX2.zip'
|
|
appcast 'http://www.peterborgapps.com/updates/lingonx2-appcast.xml'
|
|
homepage 'http://www.peterborgapps.com/lingon/'
|
|
license :commercial
|
|
|
|
app 'Lingon X.app'
|
|
|
|
depends_on :macos => '>= :yosemite'
|
|
end
|