diff options
Diffstat (limited to 'README.txt')
-rw-r--r-- | README.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..a6b1c90 --- /dev/null +++ b/README.txt @@ -0,0 +1,26 @@ + + +--------- +pkgbuilds +--------- + +This is my personal collection of packaging files for Arch Linux (PKGBUILDS). + + +Usage +----- + +Just clone this repository and run these commands to install <software>: + + cd pkgbuilds/<software> + makepkg -si + +This will install all needed dependencies (-s), build the package and install +(-i) it. + +You can remove the package with this command: + + pacman -Rsn <software> + +This will remove (-R) the package including the dependencies (-s) and all +configuration files (-n). |