|
1234567891011121314151617181920 |
- #!/bin/bash -e
-
- on_chroot << EOF
- mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
- cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
-
- if [ ! -d "serialDV" ]; then
- git clone https://github.com/f4exb/serialDV.git
- fi
-
- cd serialDV
- git reset --hard "v1.1.4"
- mkdir -p build
- cd build
- cmake -GNinja ..
- ninja install
- ldconfig
- cd ..
- rm -fr build
- EOF
|