You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
8 years ago
|
cask 'adobe-air-beta' do
|
||
|
version '26.0'
|
||
|
sha256 '916ce21b6180133de686f553c7fa492edc67541aebb657301859a3d0ce1195dc'
|
||
|
|
||
|
# fpdownload.macromedia.com was verified as official when first introduced to the cask
|
||
|
url 'https://fpdownload.macromedia.com/pub/labs/flashruntimes/air/AdobeAIR.dmg'
|
||
|
name 'Adobe AIR Beta'
|
||
|
homepage 'http://labs.adobe.com/downloads/air.html'
|
||
|
|
||
|
installer script: {
|
||
|
executable: 'Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer',
|
||
|
args: %w[-silent],
|
||
|
sudo: true,
|
||
|
}
|
||
|
|
||
|
uninstall script: {
|
||
|
executable: 'Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer',
|
||
|
args: %w[-uninstall],
|
||
|
sudo: true,
|
||
|
},
|
||
|
rmdir: [
|
||
|
'/Applications/Adobe/Flash Player/AddIns',
|
||
|
'/Applications/Adobe/Flash Player',
|
||
|
'/Applications/Adobe',
|
||
|
]
|
||
|
|
||
|
zap delete: [
|
||
|
'~/Library/Application Support/Adobe/AIR',
|
||
|
'~/Library/Caches/com.adobe.air.ApplicationInstaller',
|
||
|
],
|
||
|
rmdir: '~/Library/Application Support/Adobe/'
|
||
|
end
|