PKGBUILDs/README.md

47 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

# PKGBUILDs
This repository contains my private PKGBUILDs. Some PKGBUILDs are also available
in the [AUR Repository](https://aur.archlinux.org/packages/?K=volker.raschek&SeB=m).
The compiled binaries can be pulled from my [repository](https://aur.cryptic.systems).
If you want to clone this repository, don't forget to checkout the git submodules.
```bash
git submodule update --init --recursive
```
## Import GPG Key
Import and trust my GPG-Key to verify the gpg signed packages.
```bash
pacman-key --recv-keys 9B146D11A9ED6CA7E279EB1A852BCC170D81A982
pacman-key --lsign 9B146D11A9ED6CA7E279EB1A852BCC170D81A982
```
2020-08-19 17:54:00 +00:00
## For any architectures
2019-12-12 20:14:21 +00:00
2020-08-19 17:54:00 +00:00
Add the `any` repository to the `pacman.conf`. Any implies all system
architectures.
2019-12-12 20:14:21 +00:00
```bash
cat >> /etc/pacman.conf << 'EOF'
2020-12-30 10:09:35 +00:00
[any]
Server = https://aur.cryptic.systems/$repo/
2019-12-12 20:14:21 +00:00
EOF
```
2020-08-19 17:54:00 +00:00
## Specific architectures
2020-08-19 17:54:00 +00:00
Add a specific repository to the `pacman.conf`, which contains only specific
system architecture packages.
```bash
2019-12-12 20:14:21 +00:00
cat >> /etc/pacman.conf << 'EOF'
2020-12-30 10:09:35 +00:00
[x86_64]
Server = https://aur.cryptic.systems/$repo/
EOF
2019-12-12 20:14:21 +00:00
```