From cd989f415d9c19710c6e117ad37e9d02e29314cc Mon Sep 17 00:00:00 2001 From: Victor Robertson Date: Mon, 17 Feb 2014 12:21:07 -0600 Subject: [PATCH] New Cask: Adobe AIR Redistribution Helper The Adobe AIR Redistribution Helper (ARH) utility is a small executable that you can use as part of a custom installer. It can perform many tasks such as detect the presence and version of an installed AIR runtime as well as silently install AIR applications. --- Casks/adobe-arh.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Casks/adobe-arh.rb diff --git a/Casks/adobe-arh.rb b/Casks/adobe-arh.rb new file mode 100644 index 0000000000..63b9a207d6 --- /dev/null +++ b/Casks/adobe-arh.rb @@ -0,0 +1,15 @@ +class AdobeArh < Cask + url 'http://airdownload.adobe.com/air/distribution/latest/mac/arh' + homepage 'http://help.adobe.com/en_US/air/redist/WS485a42d56cd19641-70d979a8124ef20a34b-8000.html' + version 'latest' + no_checksum + caskroom_only true + binary 'arh' + container_type :naked + + after_install do + system "chmod", "755", "#{destination_path}/arh" + end + + caveats "Please refer to the documention at #{homepage}" +end