xpra: no runtime dependency on opencv on ppc32
This commit is contained in:
parent
4d7a8b4ad7
commit
e274ed87ec
1 changed files with 6 additions and 1 deletions
|
@ -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() {
|
||||||
|
|
Loading…
Reference in a new issue