Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

19 righe
335 B

  1. #!/bin/bash
  2. on_chroot << EOF
  3. mkdir -p "/home/${FIRST_USER_NAME}/Packages"
  4. cd "/home/${FIRST_USER_NAME}/Packages"
  5. if [ ! -d "gr-soapy" ]; then
  6. git clone https://gitlab.com/librespacefoundation/gr-soapy.git
  7. fi
  8. cd gr-soapy
  9. git pull
  10. mkdir -p build
  11. cd build
  12. rm -rf CMakeCache.txt
  13. cmake ../
  14. make -j$(nproc) install
  15. ldconfig
  16. EOF