53 lines
934 B
Markdown
53 lines
934 B
Markdown
# calrepo
|
|
|
|
Personal Arch Linux package repository.
|
|
|
|
## Table of contents
|
|
- [Usage <a name="usage"></a>](#usage-)
|
|
- [Contributing <a name="contributing"></a>](#contributing-)
|
|
- [License <a name="license"></a>](#license-)
|
|
|
|
## Usage <a name="usage"></a>
|
|
|
|
First, you need to download and locally sign my `PGP` key:
|
|
|
|
```
|
|
curl -LO slc.ar/pgpkey
|
|
sudo pacman-key --add pgpkey
|
|
sudo pacman-key --lsign-key 199980CE93F18E62
|
|
```
|
|
|
|
Then, you need to add
|
|
|
|
```
|
|
[calrepo]
|
|
SigLevel = Required DatabaseOptional
|
|
Server = https://slc.ar/$repo/$arch
|
|
```
|
|
|
|
to the end of `/etc/pacman.conf`.
|
|
|
|
Now, you must sync the repositories:
|
|
|
|
```
|
|
sudo pacman -Sy
|
|
```
|
|
|
|
Finally, to install, for example `zaread-git`:
|
|
|
|
```
|
|
sudo pacman -S zaread-git
|
|
```
|
|
|
|
or
|
|
|
|
```
|
|
sudo pacman -S calrepo/zaread-git
|
|
```
|
|
|
|
## Contributing <a name="contributing"></a>
|
|
PRs are welcome.
|
|
|
|
## License <a name="license"></a>
|
|
[MIT](https://git.slc.ar/slococo/sadedot/raw/branch/master/LICENSE.md)
|