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.

05-run.sh 349 B

4 yıl önce
12345678910111213141516171819
  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 "sdrangel" ]; then
  6. git clone --depth 1 --branch v6.5.5 https://github.com/f4exb/sdrangel.git
  7. fi
  8. cd sdrangel
  9. mkdir -p build
  10. cd build
  11. cmake -GNinja ..
  12. ninja install
  13. ldconfig
  14. cd ..
  15. rm -fr build
  16. EOF