Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 

17 wiersze
372 B

  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