25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- #!/bin/bash -e
-
- on_chroot << EOF
- mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software"
- cd "/home/${FIRST_USER_NAME}/PiSDR/Software"
-
- if [ ! -d "codec2" ]; then
- git clone https://github.com/drowe67/codec2-dev.git codec2
- fi
-
- cd codec2
- git reset --hard "v1.0.3"
- mkdir -p build
- cd build
- cmake -GNinja ..
- ninja install
- ldconfig
- cd ..
- rm -fr build
- EOF
|