Is there any guide to create deb or rpm file for linux x64? #2136
Replies: 2 comments 1 reply
-
Currently the best option is to use the "-target bundle" option so that you end up with a folder containing the application, with the captive runtime. And then use something like The deb/rpm "native" targets in AIR aren't fully working - and actually all of the "native" installers rely on there being a suitable version of AIR already installed on the machine, if there's no version then I think they try to download and install it silently but that isn't working currently (you may still end up with AIR 32 though!) -> hence the recommended approach being to use the "bundle" target. thanks |
Beta Was this translation helpful? Give feedback.
-
Packaging an executable .deb file for most linux systems is not very complicated but the information is very hard to be found. it took me a while to figure this out but the following should help you start: The main command is this
And before that, you need to setup a folder structure similar to the following. Your version might be different based on your needs but this is what I came up with and am happy for my needs.
Finally, to know what content the above files should have, you may read here: https://www.debian.org/doc/debian-policy/ A quick tip is about these three files inside the
cheers |
Beta Was this translation helpful? Give feedback.
-
Could you share a guide to create deb file or rpm file please?
Beta Was this translation helpful? Give feedback.
All reactions