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.

1234567891011121314151617181920
  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.git
  7. fi
  8. cd codec2
  9. git reset --hard 76a20416d715ee06f8b36a9953506876689a3bd2
  10. mkdir -p build
  11. cd build
  12. cmake -GNinja ..
  13. ninja install
  14. ldconfig
  15. cd ..
  16. rm -fr build
  17. EOF