選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

19 行
322 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 "sdrangel" ]; then
  6. git clone 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