Manual.md: document archs=

This commit is contained in:
maxice8 2019-02-15 10:34:05 -02:00 committed by Enno Boland
parent f581244de2
commit 7c4f62a513
1 changed files with 15 additions and 0 deletions

View File

@ -668,6 +668,21 @@ used.
- `fetch_cmd` Executable to be used to fetch URLs in `distfiles` during the `do_fetch` phase.
- `archs` Whitespace separated list of architectures that a package can be
built for.
Examples:
```
# Build package only for musl architectures
archs="*-musl"
# Build package for x86_64-musl and any non-musl architecture
archs="x86_64-musl ~*-musl"
# Default value (all arches)
archs="*"
# Packages that do not depend on architecture-specific objects
archs=noarch
```
<a id="explain_depends"></a>
#### About the many types of `depends` variable.