blob: 9ae348a6baa98f9b96dd0d8a9bf753f54ab64a88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# no Vala on i486
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//vala/})
eval "$(
declare -f build | \
sed '
s/-D vapi=true/-D vapi=false/
'
)"
fi
# glade needs gjs which needs js78 which builds only with rust (on i486)
# no Vala on i486
if [ "$CARCH" = 'i486' ]; then
makedepends=(${makedepends[@]//glade/})
fi
|