#!/bin/bash on_chroot << EOF mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software" cd "/home/${FIRST_USER_NAME}/PiSDR/Software" if [ ! -d "SoapyRemote" ]; then git clone https://github.com/pothosware/SoapyRemote.git fi cd SoapyRemote git pull mkdir -p build cd build cmake ../ make -j$(nproc) install ldconfig EOF