blob: 022fe3c4040e28878e46fc59750a5d29f98e0c08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# disable documentation (needs sphinx), building it currently leaves
# the documentation in the package and the module broken (seen in
# libwacom)
makedepends=(${makedepends[@]//python-sphinx/})
eval "$(
declare -f build | \
sed '
/.*sphinx.*/d
'
declare -f package | \
sed '
/.*doc\/html.*/d
/.*\/usr\/share\/doc.*/d
'
)"
|