blob: 27d5022e2077ce9cc74f7c8c6e52a94940c0ab65 (
plain)
1
2
3
4
5
6
7
8
9
|
# no Rust and librsvg on i486 (for now), use librsvg-og instead
if [ "$CARCH" == 'i486' ]; then
makedepends=(${makedepends[@]//librsvg/})
# ERROR: Invalid version of dependency, need 'librsvg-2.0' ['>= 2.46.0'] found '2.40.20'.
# it's used only for demos, so let's build without librsvg
#makedepends+=(librsvg-og)
fi
|