2021-07-22 03:46:19 +00:00
|
|
|
# README
|
|
|
|
|
2021-07-24 10:51:17 +00:00
|
|
|
Ensure local repository is in `/etc/pacman.conf`, using the `file://` format.
|
|
|
|
|
|
|
|
```conf
|
|
|
|
[grawlinson]
|
|
|
|
Server = file:///var/lib/repo/grawlinson
|
|
|
|
```
|
|
|
|
|
|
|
|
Ensure GPG keys for signing packages & repositories have been created,
|
|
|
|
and exist in pacman's keyring.
|
|
|
|
|
|
|
|
Copy aurutils configuration to the global directory.
|
|
|
|
|
2021-07-22 03:46:19 +00:00
|
|
|
```sh
|
2021-07-24 10:51:17 +00:00
|
|
|
cp -t /etc/aurutils {pacman,makepkg}-grawlinson.conf
|
|
|
|
```
|
2021-07-22 03:46:19 +00:00
|
|
|
|
2021-07-24 10:51:17 +00:00
|
|
|
Create a `systemd-nspawn` instance for aurbuild.
|
2021-07-22 03:46:19 +00:00
|
|
|
|
2021-07-24 10:51:17 +00:00
|
|
|
```sh
|
|
|
|
aur chroot --create -M /etc/aurutils/makepkg-grawlinson.conf -C /etc/aurutils/pacman-grawlinson.conf
|
2021-07-22 03:46:19 +00:00
|
|
|
```
|