Elementary OS has a set of applications called "curated apps" that is only available for Elementary OS, normally these apps can't be run installed by .deb package (elementary uses .deb for application distribution), so theonly alternative is compile from GitHub, but it is complicated and tedious, this tool turn the process much more easy, for example:
After install build dependencies (usually elementary-sdk dependencies) the workflow for build a "curated app" is:
Project name: com.github.hannesschulze.optimizer
GitHub repo: https://github.com/hannesschulze/optimizer
Determine which type of build mechanism (cmake or meson)
Configure build environment
Run build mechanism
Install gschema of application
With elementary4all you can do:
./elementary4all <project name>
Example:
./elementary4all com.github.donadigo.appeditor
And all above will be done automatically
Except git all dependendencies is for application build (note that this doesn't cover all apps)
You can install by running in the elementary4all folder:
./elementary4all --configure
As elementary4all is a working-in-progress tool the "dist" version of compiled applications aren't finalized, but a runnable version is created on:
com.github.<developer name>.<app name>/<app name>.AppDir
You can run with:
./elementary4all --run <project name>
For example:
./elementary4all --run com.github.donadigo.appeditor
Alternatively, you can run the application by double clicking on AppRun file
The objective of this this tools is be the most seamless possible so are a variety of feature missing, but some already made:
I really need help to finish it ?