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

00-run.sh 357 B

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 "nrsc5" ]; then
  6. git clone --depth 1 https://github.com/theori-io/nrsc5.git
  7. fi
  8. cd nrsc5
  9. mkdir -p build
  10. cd build
  11. cmake -DUSE_NEON=ON -DUSE_FAAD2=OFF -GNinja ..
  12. ninja install
  13. ldconfig
  14. cd ..
  15. rm -fr build
  16. EOF