Add Makefile and README.md to the repo #3

Merged
tio merged 2 commits from rokosun-patch-1 into master 2023-11-04 15:37:33 +00:00
2 changed files with 33 additions and 0 deletions

12
Makefile Normal file
View File

@ -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

21
README.md Normal file
View File

@ -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`