aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaxice8 <thinkabit.ukim@gmail.com>2019-02-15 12:34:05 +0000
committerEnno Boland <g@s01.de>2019-02-15 12:38:59 +0000
commit7c4f62a513adda0c52e5513353e585a198ab456a (patch)
treedfd16dff93b35eb6998babc5e76c613655d3ab48
parentf581244de29c64dc69698133874294d12c59a7d5 (diff)
downloadvoid-packages-7c4f62a513adda0c52e5513353e585a198ab456a.tar
void-packages-7c4f62a513adda0c52e5513353e585a198ab456a.tar.gz
void-packages-7c4f62a513adda0c52e5513353e585a198ab456a.tar.bz2
void-packages-7c4f62a513adda0c52e5513353e585a198ab456a.tar.lz
void-packages-7c4f62a513adda0c52e5513353e585a198ab456a.tar.xz
void-packages-7c4f62a513adda0c52e5513353e585a198ab456a.tar.zst
void-packages-7c4f62a513adda0c52e5513353e585a198ab456a.zip
Manual.md: document archs=
-rw-r--r--Manual.md15
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.