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