Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

1234567891011121314151617
  1. #!/bin/bash -e
  2. # currently not compiling with latest AirSpy drivers
  3. exit
  4. on_chroot << EOF
  5. mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
  6. cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
  7. if [ ! -d "urh" ]; then
  8. git clone --depth 1 --branch v2.9.4 https://github.com/jopohl/urh.git
  9. fi
  10. cd urh
  11. python3 -m pip install cython==3.0.0
  12. python3 setup.py install
  13. EOF