25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

20 satır
377 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 "gr-sdrplay3" ]; then
  6. git clone --single-branch --branch master --depth 1 https://github.com/fventuri/gr-sdrplay3.git
  7. fi
  8. cd gr-sdrplay3
  9. mkdir -p build
  10. cd build
  11. cmake -GNinja ..
  12. ninja install
  13. ldconfig
  14. cd ..
  15. rm -fr build
  16. EOF