thortex / rpi3-opencv

OpenCV for Raspberry Pi 3
18 stars 6 forks source link

in install_opencv.sh, cat should point to ./opencv_${V}_armhf.xa$x and not $X #1

Closed geoboom closed 5 years ago

geoboom commented 6 years ago
#!/bin/sh -x
U=https://github.com/thortex/rpi3-opencv/releases/download/
R=v3.4.2-opencl
V=3.4.2-20180716
F=opencv_${V}_armhf.deb

echo -n '' > $F
for x in a b c d e f g; do
    X=${U}${R}/opencv_${V}_armhf.xa$x
    wget -c $X
    cat ./opencv_${V}_armhf.xa$x >> $F
done

sha256sum -c SHA256SUM
if [ 0 = $? ] ; then
    sudo dpkg -i $F
    sudo ldconfig
fi                                                                                                                                                                                                                                       
geoboom commented 6 years ago

submitted a pull request

thortex commented 6 years ago

tnx to your PR.

thortex commented 5 years ago

This issue has resolved by PR merge in commit 98819a7666b2b197e085a29909012129c91a01f7.