Closed SpudGunMan closed 2 years ago
here is a script seems to work, do need to manually launch modem and have it to function
################################## # VARIM ################################## VARIM() { VPKG=$(curl -s https://www.whitemesa.net/varim/src/ | grep tar.gz | tail -1 | sed 's/^.*varim/varim/' | sed 's/tar.gz.*$/tar.gz/') cd ${BUILDDIR} || return wget --tries 2 --connect-timeout=60 https://www.whitemesa.net/varim/src/$VPKG tar -xzvf $VPKG DIRR=$(echo $VPKG | sed 's/.tar.gz//') cd ${DIRR} || return ./configure make sudo make install sudo make clean cd ${BUILDDIR} || return rm *.gz }
suggestion fix https://github.com/km4ack/pi-build/pull/458
Resolved in https://github.com/km4ack/pi-build/pull/458
here is a script seems to work, do need to manually launch modem and have it to function