xpra: no runtime dependency on opencv on ppc32

This commit is contained in:
q66 2020-01-20 12:38:15 +01:00
parent 4d7a8b4ad7
commit e274ed87ec

View file

@ -23,7 +23,12 @@ conf_files="
/etc/xpra/conf.d/*" /etc/xpra/conf.d/*"
if [ -z "$CROSS_BUILD" ]; then if [ -z "$CROSS_BUILD" ]; then
depends+=" python3-PyOpenGL-accelerate libopencv-python3" depends+=" python3-PyOpenGL-accelerate"
case "$XBPS_TARGET_MACHINE" in
ppc64*) depends+=" libopencv-python3";;
ppc*) ;;
*) depends+=" libopencv-python3";;
esac
fi fi
post_extract() { post_extract() {