blob: dbc14bda141a8897d3c74d61369de4c805f0b8e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# i486-specific
if [ "${CARCH}" = "i486" ]; then
# no documentation as docbook needs sgml parsers and lots of other stuff
makedepends=(${makedepends[@]//docbook-utils/})
eval "$(
declare -f build | \
sed '
/make .*doc.*man/d
'
)"
eval "$(
declare -f package | \
sed '
/install.*man8/d
'
)"
fi
|