From 28d2d50a6212425b9811a4c4757ea2bf173858e3 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Wed, 19 Aug 2020 19:54:00 +0200 Subject: [PATCH] fix: README --- README.md | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 23d968b..d8c9fe8 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,10 @@ pacman-key --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982 pacman-key --lsign 9B146D11A9ED6CA7E279EB1A852BCC170D81A982 ``` -## Any Repository +## For any architectures -Add the [any](https://aur.cryptic.systems/any/) repository to the pacman.conf. +Add the `any` repository to the `pacman.conf`. Any implies all system +architectures. ```bash cat >> /etc/pacman.conf << 'EOF' @@ -31,26 +32,15 @@ Server = https://aur.cryptic.systems/any/ EOF ``` -## x86_64 Repository +## Specific architectures -Add the [x86_64](https://aur.cryptic.systems/x86_64/) repository to the pacman.conf. +Add a specific repository to the `pacman.conf`, which contains only specific +system architecture packages. ```bash cat >> /etc/pacman.conf << 'EOF' -[cs_x86_64] -Server = https://aur.cryptic.systems/x86_64/ -EOF -``` - -## armv7 Repository - -Add the [armv7](https://aur.cryptic.systems/armv7/) repository to the pacman.conf. - -```bash -cat >> /etc/pacman.conf << 'EOF' - -[cs_armv7] -Server = https://aur.cryptic.systems/armv7/ +[cs_any] +Server = https://aur.cryptic.systems/$arch/ EOF ```