PKGBUILDs/README.md

60 lines
1.5 KiB
Markdown
Raw 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://arch.cryptic.systems).
## 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
```
2019-12-12 20:14:21 +00:00
## Any Repository
Add the [any](https://arch.cryptic.systems/any/) repository to the pacman.conf.
```bash
cat >> /etc/pacman.conf << 'EOF'
# A repo for Markus Pesch's own projects:
# - https://github.com/volker-raschek
# - https://git.cryptic.systems/volker.raschek
[cs_any]
Server = https://arch.cryptic.systems/any/
EOF
```
## x86_64 Repository
Add the [x86_64](https://arch.cryptic.systems/x86_64/) repository to the pacman.conf.
```bash
2019-12-12 20:14:21 +00:00
cat >> /etc/pacman.conf << 'EOF'
2019-12-11 21:18:06 +00:00
# A repo for Markus Pesch's own projects:
# - https://github.com/volker-raschek
# - https://git.cryptic.systems/volker.raschek
[cs_x86_64]
2019-12-12 20:14:21 +00:00
Server = https://arch.cryptic.systems/x86_64/
EOF
```
2019-12-12 20:14:21 +00:00
## armv7 Repository
2019-12-12 20:14:21 +00:00
Add the [armv7](https://arch.cryptic.systems/armv7/) repository to the pacman.conf.
```bash
2019-12-12 20:14:21 +00:00
cat >> /etc/pacman.conf << 'EOF'
2019-12-11 21:18:06 +00:00
# A repo for Markus Pesch's own projects:
# - https://github.com/volker-raschek
# - https://git.cryptic.systems/volker.raschek
2019-12-12 20:14:21 +00:00
[cs_armv7]
Server = https://arch.cryptic.systems/armv7/
EOF
2019-12-12 20:14:21 +00:00
```