forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdendroscope.rb
24 lines (20 loc) · 919 Bytes
/
dendroscope.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
cask 'dendroscope' do
version '3.6.3'
sha256 '2b9557232149da9d6d2fa0d07bd98b21836141e2759ca92986e5d7a3e21d0bde'
url "https://ab.inf.uni-tuebingen.de/data/software/dendroscope3/download/Dendroscope_macos_#{version.dots_to_underscores}.dmg"
appcast 'https://ab.inf.uni-tuebingen.de/data/software/dendroscope3/download/welcome.html',
configuration: version.dots_to_underscores
name 'Dendroscope'
homepage 'https://ab.inf.uni-tuebingen.de/software/dendroscope/'
installer script: {
executable: 'Dendroscope Installer.app/Contents/MacOS/JavaApplicationStub',
args: ['-q'],
}
uninstall script: {
executable: "#{appdir}/Dendroscope/Dendroscope Uninstaller.app/Contents/MacOS/JavaApplicationStub",
args: ['-q'],
}
caveats do
depends_on_java
end
end