diff options
| author | 2019-02-15 10:34:05 -0200 | |
|---|---|---|
| committer | 2019-02-15 13:38:59 +0100 | |
| commit | 7c4f62a513adda0c52e5513353e585a198ab456a (patch) | |
| tree | dfd16dff93b35eb6998babc5e76c613655d3ab48 /Manual.md | |
| parent | Manual.md: document that only_for_archs and noarch are deprecated. (diff) | |
Manual.md: document archs=
Diffstat (limited to 'Manual.md')
| -rw-r--r-- | Manual.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Manual.md b/Manual.md index b2b7a5d2522..916f42f7f98 100644 --- a/Manual.md +++ b/Manual.md @@ -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. |
