diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-09-28 21:50:55 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-09-28 21:50:55 +0200 |
commit | 1c5d6c86f26d2318358469edcac7d8714025ae23 (patch) | |
tree | 4a865db7c2f327a27bde6f247da77cba5e211c77 /extra/libxkbcommon | |
parent | b47b2c222c0ddbaecd58fbaa9aea645a60634bab (diff) | |
download | packages-1c5d6c86f26d2318358469edcac7d8714025ae23.tar.xz |
extra/libxkbcommon: temporary no docu on i486 for systemd bootstrapping
Diffstat (limited to 'extra/libxkbcommon')
-rw-r--r-- | extra/libxkbcommon/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/libxkbcommon/PKGBUILD b/extra/libxkbcommon/PKGBUILD new file mode 100644 index 00000000..e4e996bc --- /dev/null +++ b/extra/libxkbcommon/PKGBUILD @@ -0,0 +1,31 @@ +# i486-specific +if [ "${CARCH}" = "i486" ]; then + # no documentation + makedepends=(${makedepends[@]//graphviz/}) + makedepends=(${makedepends[@]//doxygen/}) + makedepends=(${makedepends[@]//xmlto/}) + makedepends=(${makedepends[@]//docbook-xsl/}) + + eval "$( + declare -f build | \ + sed ' + s/configure/configure --disable-documentation/ + ' + )" + + eval "$( + declare -f package_wayland | \ + sed ' + /mv.*doc,man/d + ' + )" + + eval "$( + declare -f package_wayland-docs | \ + sed ' + /mv.*docs/d + ' + )" + +fi + |