forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasciidocfx.rb
22 lines (19 loc) · 917 Bytes
/
asciidocfx.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cask 'asciidocfx' do
version '1.7.1'
sha256 '4043aa0f6288e80be48ed9e086cce459085fa1cd30fe5bba900ad04aa61986ba'
# github.com/asciidocfx/AsciidocFX was verified as official when first introduced to the cask
url "https://github.com/asciidocfx/AsciidocFX/releases/download/v#{version}/AsciidocFX_Mac.dmg"
appcast 'https://github.com/asciidocfx/AsciidocFX/releases.atom'
name 'AsciidocFX'
homepage 'https://www.asciidocfx.com/'
installer script: {
executable: 'AsciidocFX Installer.app/Contents/MacOS/JavaApplicationStub',
args: ['-q'],
sudo: true,
}
uninstall script: {
executable: '/Applications/AsciidocFX/AsciidocFX Uninstaller.app/Contents/MacOS/JavaApplicationStub',
args: ['-q'],
sudo: true,
}
end