forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunison.rb
22 lines (18 loc) · 905 Bytes
/
unison.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cask 'unison' do
if MacOS.version <= :mountain_lion
version '2.40.69'
sha256 '2bcc460511f2b43fa1613cc5f9ba4dd59bb12d40b5b9fb2e9f21adaf854bcf3b'
# unison-binaries.inria.fr was verified as official when first introduced to the cask
url "http://unison-binaries.inria.fr/files/Unison-#{version}_x64.dmg"
else
version '2.48.15'
sha256 '89894d14c9ff3c4d6195cb6a8065a2849e6ad55951799eedf8879e1a257d3e11'
# github.com/bcpierce00/unison/releases/download was verified as official when first introduced to the cask
url "https://github.com/bcpierce00/unison/releases/download/#{version}/Unison-OS-X-#{version}.zip"
end
appcast 'https://github.com/bcpierce00/unison/releases.atom',
checkpoint: '03df713ad77a41b0df51dea0474894d2dfa7dc55a63474735497bde71509e763'
name 'Panic Unison'
homepage 'https://www.cis.upenn.edu/~bcpierce/unison/'
app 'Unison.app'
end