repo not just loose packages, actually

This commit is contained in:
askiiart 2025-02-26 01:57:00 +00:00
parent 04ab1f5188
commit d1922aa5c9

View file

@ -19,13 +19,13 @@
## Packaging ## Packaging
- The directory for built packages is specified with the `PACKAGES_DIR` environment variable, falling back to `/packages` - The package repo is specified with the `REPO_DIR` environment variable, falling back to `/repo`
- They should be placed in `$PACKAGES_DIR/[package name]/`
- Packages should be built on the distro they're for, unless there's a specific reason not to. - Packages should be built on the distro they're for, unless there's a specific reason not to.
- There should be a branch named after a distro for each distro it's for, e.g. `fedora` for Fedora. - There should be a branch named after the distro for each distro it's for, e.g. `fedora` for Fedora.
- Must grab all assets locally, must not *require* getting packages from a URL, even if it's available publicly and easily. - Must grab all assets locally, must not *require* getting packages from a URL, even if it's available publicly and easily.
- Extra optional functionality like that is okay though. - Extra optional functionality like that is okay though.
- i.e. can't grab from [here](https://askiiart.net/repos/archives/polycat/), must instead grab from `$COMPILED_DIR/polycat/` - i.e. can't grab from [here](https://askiiart.net/repos/archives/polycat/), must instead grab from `$COMPILED_DIR/polycat/`
- Must update the repo after building the package
--- ---