diff options
author | xengineering <me@xengineering.eu> | 2021-12-28 20:00:16 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2021-12-28 20:01:09 +0100 |
commit | 70b86c762772f50f10aa1167e9c9f4d93e7dff90 (patch) | |
tree | a508379b402dda19a48ba63bef7b055fb1e6541a | |
parent | 6bd13aad1b4d9e1ab72122e92adedbaa09dc2623 (diff) | |
download | pkgbuilds-70b86c762772f50f10aa1167e9c9f4d93e7dff90.tar pkgbuilds-70b86c762772f50f10aa1167e9c9f4d93e7dff90.tar.zst pkgbuilds-70b86c762772f50f10aa1167e9c9f4d93e7dff90.zip |
Reduce Text Width to < 80 in README.md
-rw-r--r-- | README.md | 22 |
1 files changed, 16 insertions, 6 deletions
@@ -2,14 +2,17 @@ # PKGBUILDs -This is my personal collection of PKGBUILD files. They describe the packaging process of software for Arch Linux. +This is my personal collection of PKGBUILD files. They describe the packaging +process of software for Arch Linux. ## Usage ### 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: +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 pkgbuilds/xengineering-base-meta # you can select any other project @@ -19,16 +22,23 @@ 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```. +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). +**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). ``` # Add PGP key curl https://xengineering.eu/xengineering.asc > xengineering.asc sudo pacman-key --add xengineering.asc # add key to pacman key ring -sudo pacman-key --finger xengineering # make sure that the fingerprint is A13B 2588 7878 7F94 3F6C 68F0 0FD1 F842 33FA 8900 -sudo pacman-key --lsign-key xengineering # trust this key for package installation +sudo pacman-key --finger xengineering # make sure that the fingerprint is + # A13B 2588 7878 7F94 3F6C 68F0 0FD1 + # F842 33FA 8900 +sudo pacman-key --lsign-key xengineering # trust this key for package + # installation # Add repository sudo nano /etc/pacman.conf |