summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorxengineering <mail2xengineering@protonmail.com>2020-09-10 19:45:35 +0200
committerxengineering <mail2xengineering@protonmail.com>2020-09-10 19:57:34 +0200
commit4501a7279dcddfb6f434d5426bad6704ab63edfb (patch)
tree3df475cabfd5a58339fdc84855d2d1ff3ec8a906 /README.md
parent30c5faf1110ba1d6ee270e8cb5e63b439b019947 (diff)
downloadpkgbuilds-4501a7279dcddfb6f434d5426bad6704ab63edfb.tar
pkgbuilds-4501a7279dcddfb6f434d5426bad6704ab63edfb.tar.zst
pkgbuilds-4501a7279dcddfb6f434d5426bad6704ab63edfb.zip
Improve Documentation
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index 77a7a5f..165ae7d 100644
--- a/README.md
+++ b/README.md
@@ -9,14 +9,18 @@ This is my personal collection of PKGBUILD files. They describe the packaging pr
### Build and install a Package
+If you just cloned this repository with ```git clone https://github.com/xengineering/pkgbuilds.git``` you can compile and install packages from it manually like this:
+
```
-cd xengineering-base-meta # you can select any other project
+cd pkgbuilds/xengineering-base-meta # you can select any other project
makepkg # builds the package
sudo pacman -U *.pkg.tar.zst # installs the package
```
### Add xengineering's Repository to your Arch Linux Installation
+If you want to use my pre-compiled packages and trust me you can add my personal repository to your installation. This will also update my packages on your system if you upgrade with ```sudo pacman -Syu```.
+
**Disclaimer:** This adds my PGP key to your pacman key ring! Thus your Arch Linux installation will accept any package signed by me (so you have to trust me).
```
@@ -32,5 +36,9 @@ sudo nano /etc/pacman.conf
# Append this text:
[xengineering]
Server = https://xengineering.eu/archlinux/repositories/xengineering/os/$arch
+
+# Close nano editor - then this should work well:
+sudo pacman -Syyu # update repositories
+sudo pacman -S <pkg from xengineering>
```