Fix spelling errors
Fixed with:
codespell --summary --skip=.git,extra,,lib,macros,security --ignore-words-list="ans,ba,cant,develope,fo,get's,nin,numer,parm,parms,setts,som,statics,ths,ue,vektor,objext" --write-changes --interactive=2
and manual editing.
2022-07-07 19:25:58 +00:00
|
|
|
This is all about building hamlib inside docker container - so that you do not need to install dependencies on your local machine.
|
2021-10-04 13:31:04 +00:00
|
|
|
|
|
|
|
1. Build docker container
|
|
|
|
|
|
|
|
(cd docker-build && docker build --no-cache -t this.registry.is.invalid/hamlib-build .)
|
|
|
|
|
|
|
|
2. Build hamlib
|
|
|
|
|
|
|
|
docker run -ti -u root -v $(pwd):/home/hamlib/build -v /usr/local/hamlib-alpha:/usr/local/hamlib-alpha this.registry.is.invalid/hamlib-build
|
|
|
|
|
|
|
|
3. Execute hamlib
|
|
|
|
|
|
|
|
/usr/local/hamlib-alpha/bin/rigctl <your options here>
|