blob: f1a34d1abcb7396f3a6eaca0931700f9171e3cbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# remove ttf-liberation on i486 (X packages missing for installing the font)
makedepends=(${makedepends[@]//ttf-liberation/})
makedepends_i686+=(ttf-liberation)
# 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
|