From 75dac032ebb2310e572b9b28bd891cc6be4eede8 Mon Sep 17 00:00:00 2001 From: MedzikUser Date: Sun, 29 May 2022 13:24:14 +0200 Subject: [PATCH] docs: add readme --- README.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..db22e5ab --- /dev/null +++ b/README.md @@ -0,0 +1,31 @@ +# Build AUR + +## How to use? + +First, install the primary key - it can then be used to install our mirrorlist + +```bash +sudo pacman-key --recv-key 02213A0493457E96 +sudo pacman-key --lsign-key 02213A0493457E96 +sudo pacman -U 'https://built-aur.medzik.workers.dev/built-mirrorlist.pkg.tar.xz' +``` + +Then add the repo to pacman.conf + +### If you using x86-64 + +```bash +echo ' +[built] +SigLevel = DatabaseOptional +Include = /etc/pacman.d/built-mirrorlist' | sudo tee --append /etc/pacman.conf +``` + +### If you using x86-64-v3 + +```bash +echo ' +[built] +SigLevel = DatabaseOptional +Include = /etc/pacman.d/built-mirrorlist-x86-64-v3' | sudo tee --append /etc/pacman.conf +```