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.
 
 
 
 
 

15 satır
351 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 "CyberEther" ]; then
  6. git clone --branch development --depth 1 https://github.com/luigifcruz/CyberEther.git
  7. cd CyberEther
  8. meson -Dbuildtype=debugoptimized build
  9. cd build
  10. ninja
  11. fi
  12. EOF