diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..061d578 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# makefile for tromjaro-welcome-app +build: + makepkg -s + +install: + pamac-installer tromjaro-welcome-app-*.tar.zst + +remove: + pamac-installer --remove tromjaro-welcome-app + +clean: + $(RM) -rf src/ pkg/ pictures.zip *.tar.zst diff --git a/README.md b/README.md new file mode 100644 index 0000000..3c757b4 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# TROMjaro Welcome app + +A Welcome app for TROMjaro Linux that gives users a nice overview of their operating system. + +## Building the package + +Open Terminal and issue the command: + +`make` + +To install the package right after building, use: + +`make install` + +To remove just installed package, use: + +`make remove` + +To cleanup the project folder, use: + +`make clean`