
Name | adobe-air-sdk |
Version | 2.6 |
Category | non-free |
Description | Adobe Air Software Development Kit and Runtime Environment |
Maintainer | al.bobylev@gmail.com |
License | custom |
Website | https://get.adobe.com/air |
Sizes | |
Depends on | ![]() ![]() ![]() |
Download package |
|
Show receipt | |
Show files list | |
Show cooking log | |
Install package Remove package |
Description
Adobe Integrated Runtime (AIR) is a cross-platform runtime environment developed by Adobe Systems for building rich Internet applications using Adobe Flash, Adobe Flex, HTML, or Ajax, that can be deployed as desktop applications. Installing an AIR ApplicationDownload the application, and unzip it to
Making it executableYou can also make an executable by creating a file in /usr/local/bin:
The app might need parameters (voddler) so then the script can look like:
Then chmod the file so that it can execute:
Now you have installed an application in AIR. Yes it is this silly :P Removing the applicationDelete the application folder in Running binaries that use AIRSome applications using Adobe AIR can come with their own binaries included. In this case, it's often better to run these binaries, rather than bypassing them using adl, to not lose any extra functionality these binaries might provide. These binaries will require some work however, before they can be used with the Adobe AIR SDK. First of all, binaries will look for Adobe AIR, rather than the Adobe AIR SDK. There seems to be no way to change where to look, so you're going to have to symlink the Adobe AIR runtime provided with the SDK to the default location that binaries follow:
With this, the binaries should be able to detect your Adobe AIR installation. It will leave you with two Adobe AIR folders in /opt, which is dirty but there seems to be no way around this for now. Another problem you'll run into is that whenever the AIR runtime starts a process, it'll check whether you have accepted the EULA, something that is not included with the SDK. Since it can't determine that you did, it then tries to run the Adobe AIR Updater, which is ALSO not included in the SDK runtime, causing the binary to fail and hang. To avoid this you're going to have to manually accept the EULA. Warning: By creating the following file you are most likely accepting the Adobe AIR End User License Agreement. Make sure to read this agreement, and do not perform this work-around if you do not agree with it. To manually accept the EULA, use this command:
After this, you should clear the check and the binary should run normally. This information has been shamelessly copied from this page: https://wiki.archlinux.org/index.php/Adobe_AIR Content is available under GNU Free Documentation License 1.3 or later unless otherwise noted. |