Files
AeroPkg/assets/etc/aeropkg.md

51 lines
1.0 KiB
Markdown
Raw Normal View History

2025-09-02 20:01:30 +03:00
Aeropkg config file
2025-06-02 18:00:32 +03:00
=
2025-09-03 23:58:59 +03:00
> # Repository
> Global settings
2025-08-08 00:00:14 +03:00
``` cfg *** Repository list and priority ***
2025-09-02 20:01:30 +03:00
gnu /pkg/gnu/aeropkg/var/gnu
musl /pkg/gnu/aeropkg/var/musl
2025-06-02 18:00:32 +03:00
```
2025-11-18 19:46:36 +03:00
> # Env
> Block name `env *** env ***`
> Global process environment
2025-09-03 23:58:59 +03:00
>
2025-11-18 19:46:36 +03:00
> Block name's `env *** env [repo] [stages] ***`
> Install subcommand environment
> Repo, stages - optional
> Valid stages: download, patch, build, config.
> `Params`
> save_source=true (default: none)
> pgo=generate|use (default: none)
> disable=true|false (default: false)
``` env *** env ***
SHELL=/bin/sh
2025-09-03 23:58:59 +03:00
```
2025-11-18 19:46:36 +03:00
``` env *** env gnu ***
save_source=true
2025-09-03 23:58:59 +03:00
```
> # Hooks
2025-11-18 19:46:36 +03:00
> Block format `sh *** hook [repo] [stages] ***`
2025-09-03 23:58:59 +03:00
> Execute a shell script for a specific repository
>
2025-11-18 19:46:36 +03:00
> Repo, stages - optional
> Valid stages: download, patch, build, config.
> # Trim
> Block format `cfg *** Trim rules ***`
> Trimming removes unused files for a specified period
2025-09-03 23:58:59 +03:00
>
2025-11-18 19:46:36 +03:00
> Relative paths with /pkg/<repo>, support wildcard
> Add ! to exclude
2025-09-03 23:58:59 +03:00
2025-11-18 19:46:36 +03:00
``` cfg *** Trim rules ***
!**
!aeropkg
2025-06-02 18:00:32 +03:00
```