blob: 9bc50ae40c9874f50038004aa0afd3bf2c2147e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# breaking the cycle with python-spinx
makedepends=(${makedepends[@]/python-sphinx-furo})
makedepends=(${makedepends[@]/python-sphinx-argparse})
makedepends=(${makedepends[@]/python-sphinx})
eval "$(
declare -f build | \
sed '
/sphinx-build/d
'
declare -f package | \
sed '
/docs\/build\/html/d
'
)"
|