Description
I been trying to figure out how to build deb and rpm installer packages using the same files I use to build msi/exe bundle installers and macos pkg installers, of which I could use the information to see if I could help clean up some files in dotnet/runtime but yet also package them in the same way as well (just with less files to maintain). This is so then I could eventually learn how I can then eventually add them to a debian package repository for install via apt-get
or related package managers.
Basically, I want to build installer packages in deb and rpm format for the following generic rids:
- linux-x64
- linux-arm
- linux-arm64
Here is an PR where I tried to learn how to do this using arcade https://github.com/Elskom/EFCore-Installer/pull/48/files using test files that simply bundles efcore into an installable shared framework (it also exists as an example and a way for me to experiment with more things from arcade).