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.
 
 
 
 
 

20 righe
355 B

  1. #!/bin/bash -e
  2. on_chroot << EOF
  3. mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
  4. cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
  5. if [ ! -d "codec2" ]; then
  6. git clone https://github.com/drowe67/codec2-dev.git codec2
  7. fi
  8. cd codec2
  9. git reset --hard "v1.0.3"
  10. mkdir -p build
  11. cd build
  12. cmake -GNinja ..
  13. ninja install
  14. ldconfig
  15. cd ..
  16. rm -fr build
  17. EOF