blob: 7531c486351bfd07c631d1d1ae1d4b276094d94d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# no documentation build on i486 (no TeX)
makedepends=(${makedepends[@]//texlive-core/})
makedepends=(${makedepends[@]//texlive-latexextra/})
makedepends_i686+=(texlive-core texlive-latexextra)
makedepends_pentium4+=(texlive-core texlive-latexextra)
if [ "${CARCH}" = "i486" ]; then
eval "$(
declare -f build | \
sed '
/make.*docs/d
s|-Dbuild_doc:BOOL=ON|-Dbuild_doc:BOOL=OFF|
'
)"
unset check
fi
|