您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

18 行
312 B

  1. #!/bin/bash
  2. on_chroot << EOF
  3. mkdir -p "/home/${FIRST_USER_NAME}/Packages"
  4. cd "/home/${FIRST_USER_NAME}/Packages"
  5. if [ ! -d "SoapyRemote" ]; then
  6. git clone https://github.com/pothosware/SoapyRemote.git
  7. fi
  8. cd SoapyRemote
  9. git pull
  10. mkdir -p build
  11. cd build
  12. cmake ../
  13. make -j$(nproc) install
  14. ldconfig
  15. EOF