mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
Manual.md: document archs=
This commit is contained in:
parent
f581244de2
commit
7c4f62a513
1 changed files with 15 additions and 0 deletions
15
Manual.md
15
Manual.md
|
@ -668,6 +668,21 @@ used.
|
||||||
|
|
||||||
- `fetch_cmd` Executable to be used to fetch URLs in `distfiles` during the `do_fetch` phase.
|
- `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>
|
<a id="explain_depends"></a>
|
||||||
#### About the many types of `depends` variable.
|
#### About the many types of `depends` variable.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue