blob: a8b88f9345da1534fbadec3f00c8c0b6ce89c38f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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
# no qt6 on i486
makedepends=(${makedepends[@]//qt6-base/})
makedepends_i686+=(qt6-base)
makedepends_pentium4+=(qt6-base)
if [ "${CARCH}" = "i486" ]; then
eval "$(
declare -f build | \
sed '
s|-Dbuild_wizard:BOOL=ON|-Dbuild_wizard:BOOL=OFF|
'
)"
unset check
fi
|