blob: 772660447dafd644703b18a968efba5f0aef5c49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# no python-sphinx
makedepends=(${makedepends[@]/python-sphinx-inline-tabs/})
makedepends=(${makedepends[@]/python-sphinx-copybutton/})
makedepends=(${makedepends[@]/python-sphinxcontrib-towncrier/})
makedepends=(${makedepends[@]/python-sphinx/})
eval "$(
declare -f build | \
sed '
/cd docs/ a \
return
'
)"
eval "$(
declare -f package | \
sed '
/install.*docs/d
'
)"
|