blob: 98b5d95e5a6787758296ef0695e74d13e66d5ab3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# remove ttf-liberation on i486 (X packages missing for installing the font)
makedepends=(${makedepends[@]//ttf-liberation/})
makedepends_i686+=(ttf-liberation)
makedepends_pentium4=("${makedepends_i686[@]}")
# i486-specific
if [ "${CARCH}" = "i486" ]; then
# remove ttf-liberation (X packages missing for installing the font)
eval "$(
declare -f build | \
sed "
/make .*doc/d
"
)"
fi
|