blob: 794fb07debf0933eec0e863fa36cf9201e80b2e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# boostrapping python modules
# no testing no test or optional dependencies
unset check
unset checkdepends
unset optdepends
# no documentation, breaking the cycle with python-spinx
makedepends=(${makedepends[@]//python-sphinx*/})
eval "$(
declare -f build | \
sed '
/cd docs/ a \
return
'
)"
eval "$(
declare -f package | \
sed '
/install.*docs/d
'
)"
|