blob: 7b4738262d8e4ddda08ec834bce8fab23f0d61f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# disable documentation (needs sphinx, sphinx-furo)
# python-sphinx-furo needs npm, which is broken on archlinux32
# most likely since years..
makedepends=(${makedepends[@]//python-sphinx-furo/})
makedepends=(${makedepends[@]//python-sphinx-argparse-cli/})
makedepends=(${makedepends[@]//python-sphinx-autodoc-typehints/})
makedepends=(${makedepends[@]//python-sphinx/})
eval "$(
declare -f build | \
sed '
/.*sphinx-build.*/d
'
declare -f package | \
sed '
/.*\/share\/doc.*/d
'
)"
|