homebrew-cask/Casks/sencha.rb

35 lines
1.2 KiB
Ruby

cask 'sencha' do
version '6.2.1.29'
sha256 '41713f045fb5d3c75992d4ea401ace967917efad837801b81547d53db6d31960'
url "https://cdn.sencha.com/cmd/#{version}/jre/SenchaCmd-#{version}-osx.app.zip"
name 'Sencha Cmd'
homepage 'https://www.sencha.com/products/sencha-cmd/'
installer script: "SenchaCmd-#{version}-osx.app/Contents/MacOS/JavaApplicationStub",
args: ['-Djava.awt.headless=true', '-q', '-dir', "/opt/Sencha/Cmd/#{version}"],
sudo: true
postflight do
set_ownership '/opt/Sencha'
end
uninstall script: {
executable: "/opt/Sencha/Cmd/#{version}/Sencha Cmd Uninstaller.app/Contents/MacOS/JavaApplicationStub",
args: ['-Djava.awt.headless=true', '-q'],
sudo: true,
}
caveats <<-EOS.undent
Installing this Cask means you have AGREED to the Sencha Cmd License
https://www.sencha.com/legal/sencha-tools-software-license-agreement/
Sencha Cmd appends 1 line to your ~/.bash_profile or ~/.profile file:
export PATH="/opt/Sencha/Cmd:$PATH"
If you are a zshell user, append both lines to your .zshrc file.
EOS
end