summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-05-29 22:19:45 +0200
committerxengineering <me@xengineering.eu>2022-05-29 22:19:45 +0200
commit5036b57ea2f277c7e12aef499865b5eafdb67731 (patch)
tree469f554b41aeea639237b51d985413956fd52353
parentc14c11792652f65fe3d73417f3c545ab03816ac8 (diff)
downloadpkgbuilds-5036b57ea2f277c7e12aef499865b5eafdb67731.tar
pkgbuilds-5036b57ea2f277c7e12aef499865b5eafdb67731.tar.zst
pkgbuilds-5036b57ea2f277c7e12aef499865b5eafdb67731.zip
Update README and switch to .txt
-rw-r--r--README.md54
-rw-r--r--README.txt26
2 files changed, 26 insertions, 54 deletions
diff --git a/README.md b/README.md
deleted file mode 100644
index c8ee063..0000000
--- a/README.md
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-# PKGBUILDs
-
-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:
-
-```
-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).
-
-```
-# 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
-
-# Add repository
-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>
-```
-
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).