2025-03-14 21:59:59 -06:00
|
|
|
# repo-add
|
|
|
|
|
|
|
|
|
|
> Package database maintenance utility which enables installation of said package via Pacman.
|
2025-09-14 18:48:49 -06:00
|
|
|
> See also: `repo-remove`.
|
2025-03-14 21:59:59 -06:00
|
|
|
> More information: <https://manned.org/repo-add>.
|
|
|
|
|
|
|
|
|
|
- Create an empty repository:
|
|
|
|
|
|
|
|
|
|
`repo-add {{path/to/database.db.tar.gz}}`
|
|
|
|
|
|
2025-09-14 18:48:49 -06:00
|
|
|
- Add packages to the repository:
|
|
|
|
|
|
|
|
|
|
`repo-add {{path/to/database.db.tar.gz}} {{package1.pkg.tar.zst package2.pkg.tar.zst ...}}`
|
|
|
|
|
|
|
|
|
|
- Add all package binaries in the current directory and remove any outdated package files:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-03-19 19:23:44 -06:00
|
|
|
`repo-add {{[-R|--remove]}} {{path/to/database.db.tar.gz}} {{*.pkg.tar.zst}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Add all package binaries in the current directory in silent mode except for warning and error messages:
|
|
|
|
|
|
2025-03-19 19:23:44 -06:00
|
|
|
`repo-add {{[-q|--quiet]}} {{path/to/database.db.tar.gz}} {{*.pkg.tar.zst}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Add all package binaries in the current directory without showing color:
|
|
|
|
|
|
|
|
|
|
`repo-add --nocolor {{path/to/database.db.tar.gz}} {{*.pkg.tar.zst}}`
|