Update ambe-debian-installer

updated zip links
This commit is contained in:
Ben 2024-04-04 13:04:11 -04:00 committed by GitHub
parent bfe70cad46
commit ad9c0ce857
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,27 +49,27 @@ then
if [ "$ARC" = "x86_64" ]; if [ "$ARC" = "x86_64" ];
then then
wget $X64 wget $X64
tar xfvz libftd2xx-x86_64-1.4.6.tgz tar xfvz libftd2xx-x86_64-1.4.27.tgz
cd release/build cd release/build
cp libftd2xx.* /usr/local/lib cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.6 chmod 0755 /usr/local/lib/libftd2xx.so.1.4.27
ln -sf /usr/local/lib/libftd2xx.so.1.4.6 /usr/local/lib/libftd2xx.so ln -sf /usr/local/lib/libftd2xx.so.1.4.27 /usr/local/lib/libftd2xx.so
elif [ "$ARC" = "armv71" ]; elif [ "$ARC" = "armv71" ];
then then
wget $ARM wget $ARM
tar xfvz libftd2xx-arm-v7-hf-1.4.22.tgz tar xfvz libftd2xx-arm-v7-hf-1.4.27.tgz
cd release/build cd release/build
cp libftd2xx.* /usr/local/lib cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.22 chmod 0755 /usr/local/lib/libftd2xx.so.1.4.27
ln -sf /usr/local/lib/libftd2xx.so.1.4.22 /usr/local/lib/libftd2xx.so ln -sf /usr/local/lib/libftd2xx.so.1.4.27 /usr/local/lib/libftd2xx.so
elif [ "$ARC" = "i686" ]; elif [ "$ARC" = "i686" ];
then then
wget $X32 wget $X32
tar xfvz libftd2xx-i386-1.4.6.tgz tar xfvz libftd2xx-x86_32-1.4.27.tgz
cd release/build cd release/build
cp libftd2xx.* /usr/local/lib cp libftd2xx.* /usr/local/lib
chmod 0755 /usr/local/lib/libftd2xx.so.1.4.6 chmod 0755 /usr/local/lib/libftd2xx.so.1.4.27
ln -sf /usr/local/lib/libftd2xx.so.1.4.6 /usr/local/lib/libftd2xx.so ln -sf /usr/local/lib/libftd2xx.so.1.4.27 /usr/local/lib/libftd2xx.so
fi fi
else else
echo "------------------------------------------------------------------------------" echo "------------------------------------------------------------------------------"