Add Makefile

This commit is contained in:
Roma 2019-08-22 22:07:06 +02:00
parent 6d949aeb5f
commit 32eb70adf4
2 changed files with 33 additions and 1 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
# makefile for pamac-url-handler
build:
makepkg
install:
pamac-installer pamac-url-handler-*.tar.xz
remove:
pamac-installer --remove pamac-url-handler
clean:
$(RM) -rf src/ pkg/ *.tar.xz

View File

@ -1,2 +1,22 @@
# pamac-url-handler # pamac URL handler package
Install ALPM packages with `pamac-installer` from URL scheme `x-alpm-package://[aur/]<packagename>`
## Building the package
Open Terminal and issue the command:
`make`
To install the package right after the building use:
`make install`
To remove just installed package use:
`make remove`
To cleanup the project use:
`make clean`