From b225777d92b4cb78b4404e36c98e126f308e2222 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Wed, 23 Nov 2022 18:20:27 -0600 Subject: [PATCH] force 4.4 --- app/stable/pi/HAMLIB.bapp | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/app/stable/pi/HAMLIB.bapp b/app/stable/pi/HAMLIB.bapp index 3106cb4..b3d7627 100644 --- a/app/stable/pi/HAMLIB.bapp +++ b/app/stable/pi/HAMLIB.bapp @@ -31,13 +31,24 @@ INSTALL(){ NEWRIG=$(curl -s https://sourceforge.net/projects/hamlib/files/latest/download | grep -o https://downloads.sourceforge.net/project/hamlib/hamlib/[0-9].[0-9] | head -n 1 | awk -F "/" '{print $7}') - HAMLIBLINK=https://sourceforge.net/projects/hamlib/files/hamlib/${NEWRIG}/hamlib-${NEWRIG}.tar.gz + #HAMLIBLINK=https://sourceforge.net/projects/hamlib/files/hamlib/${NEWRIG}/hamlib-${NEWRIG}.tar.gz + #for hamlib 4.4 download until issues with 4.5 are resolved. + #HAMLIBLINK=https://sourceforge.net/projects/hamlib/files/hamlib/4.4/hamlib-4.4.tar.gz - wget --tries 2 --connect-timeout=60 ${HAMLIBLINK} + #wget --tries 2 --connect-timeout=60 ${HAMLIBLINK} + + #tar -xzf hamlib-${NEWRIG}.tar.gz + #rm hamlib-${NEWRIG}.tar.gz + #cd hamlib-${NEWRIG} || return + + #force hamlib 4.4 download until issues with 4.5 are resolved. + HAMLIBLINK=https://sourceforge.net/projects/hamlib/files/hamlib/4.4/hamlib-4.4.tar.gz + wget --tries 2 --connect-timeout=60 ${HAMLIBLINK} + + tar -xzf hamlib-4.4.tar.gz + rm hamlib*.tar.gz + cd hamlib-4.4 - tar -xzf hamlib-${NEWRIG}.tar.gz - rm hamlib-${NEWRIG}.tar.gz - cd hamlib-${NEWRIG} || return ./configure make -j $BAPCORE sudo make install