2019-12-11 20:54:58 +00:00
|
|
|
# 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).
|
2020-07-04 13:16:34 +00:00
|
|
|
The compiled binaries can be pulled from my [repository](https://aur.cryptic.systems).
|
2019-12-11 20:54:58 +00:00
|
|
|
|
2020-01-04 21:29:00 +00:00
|
|
|
If you want to clone this repository, don't forget to checkout the git submodules.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git submodule update --init --recursive
|
|
|
|
```
|
|
|
|
|
2019-12-11 20:54:58 +00:00
|
|
|
## 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
|
|
|
|
|
2020-07-04 13:16:34 +00:00
|
|
|
Add the [any](https://aur.cryptic.systems/any/) repository to the pacman.conf.
|
2019-12-12 20:14:21 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
cat >> /etc/pacman.conf << 'EOF'
|
|
|
|
|
|
|
|
[cs_any]
|
2020-07-04 13:16:34 +00:00
|
|
|
Server = https://aur.cryptic.systems/any/
|
2019-12-12 20:14:21 +00:00
|
|
|
EOF
|
|
|
|
```
|
|
|
|
|
2019-12-11 20:54:58 +00:00
|
|
|
## x86_64 Repository
|
|
|
|
|
2020-07-04 13:16:34 +00:00
|
|
|
Add the [x86_64](https://aur.cryptic.systems/x86_64/) repository to the pacman.conf.
|
2019-12-11 20:54:58 +00:00
|
|
|
|
|
|
|
```bash
|
2019-12-12 20:14:21 +00:00
|
|
|
cat >> /etc/pacman.conf << 'EOF'
|
2019-12-11 20:54:58 +00:00
|
|
|
|
|
|
|
[cs_x86_64]
|
2020-07-04 13:16:34 +00:00
|
|
|
Server = https://aur.cryptic.systems/x86_64/
|
2019-12-11 20:54:58 +00:00
|
|
|
EOF
|
|
|
|
```
|
|
|
|
|
2019-12-12 20:14:21 +00:00
|
|
|
## armv7 Repository
|
2019-12-11 20:54:58 +00:00
|
|
|
|
2020-07-04 13:16:34 +00:00
|
|
|
Add the [armv7](https://aur.cryptic.systems/armv7/) repository to the pacman.conf.
|
2019-12-11 20:54:58 +00:00
|
|
|
|
|
|
|
```bash
|
2019-12-12 20:14:21 +00:00
|
|
|
cat >> /etc/pacman.conf << 'EOF'
|
2019-12-11 20:54:58 +00:00
|
|
|
|
2019-12-12 20:14:21 +00:00
|
|
|
[cs_armv7]
|
2020-07-04 13:16:34 +00:00
|
|
|
Server = https://aur.cryptic.systems/armv7/
|
2019-12-11 20:54:58 +00:00
|
|
|
EOF
|
2019-12-12 20:14:21 +00:00
|
|
|
```
|