blob: 8913c6eb857ba88c7e03b7369de0934325051243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# no polkit, no js78, no rust, use polkit-duktape on i486
if [ "$CARCH" = 'i486' ]; then
depends=(${depends[@]//polkit/})
depends+=(polkit-duktape)
fi
# for now we have issues in sparql (which therefore is still linked
# against icu69 on i486)
if [ "$CARCH" = 'i486' ]; then
makedepends+=(icu69)
fi
|