pi-build icon indicating copy to clipboard operation
pi-build copied to clipboard

pull hamlib from github, not sourceforge

Open pleasantone opened this issue 4 years ago • 2 comments

Hamlib is now being maintained on github, if you want to stay current, that's the place... https://hamlib.github.io for more info.

pleasantone avatar May 11 '20 04:05 pleasantone

Thanks for the heads up. 73, de KM4ACK

km4ack avatar May 11 '20 17:05 km4ack

rm -rf Hamlib
git clone https://github.com/Hamlib/Hamlib
cd Hamlib
./bootstrap
if [[ $(whereis python | grep bin) ]];then
     ./configure --with-python-binding --with-xml-support
else
     ./configure --with-xml-support
fi
#make -j 4
make
sudo make install
sudo ldconfig

this shims over source forge

SpudGunMan avatar Oct 31 '22 21:10 SpudGunMan