UppTerm is simple terminal application written in U++ framework. It is based on TerminalCtrl UppHub package written and maintained by İsmail Yılmaz.
The main feature of this repository is that it doesn't require U++ framework installation. You can use the make command and the whole application will be built automaticaly. All dependencies, including UMK, will be downloaded from the internet. So, if you are looking for the example of using U++ framework without TheIDE it is a good repository to study the code and build architecture.
UppTerm is a supportive component within the U++ Flatpak distribution. It launches the first time a user runs the Flatpak, downloading system-wide dependencies required for compiling framework applications. To learn more, you can visit the U++ Flatpak recipe repository.
To build this project you do not need to install U++ framework just use following make commands
make download
make
The first command will download the dependencies from the internet. The second one will build the application.
To run the application, execute the following command from the repository' root directory:
build/upp-term
You can also specify the script to execute by the terminal application
build/upp-term "/bin/bash /home/klugier/test.sh"
To remove all downloaded dependencies and build files, run the following command:
make clean