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

add wsjtz

Open km4ack opened this issue 3 years ago • 2 comments

I have been using WSJT-Z for a while now. It has some very good features that can assist with off grid operations. For example filtering, can limit the stations that you see on a small screen or allow automatic communication with specific stations. It’s also great for field contest operation.

I would like to suggest that you add it to “build-a-pi” as an option.

Thanks for all that you do for the Ham community.

Richard Burgan

JS6TRQ / WC8J

Okinawa, Japan

km4ack avatar Nov 30 '21 12:11 km4ack

This would be an awesome option for build-a-pi. I recently upgraded to Raspbian 11 and am having difficulty getting wsjtz working again. Had it working great on buster. So far no love on bullseye. I have read the documentation, but I keep getting an installation failed message that a needed package was not found.

NA8X avatar Feb 19 '22 06:02 NA8X

BUILDDIR=$HOME/.bap-source-files
#depends hamlib
#ran wsjtx installer first to get the required build enviroment setup (need copy here)
#this will not install as it will overwrite wsjtx this will compile and can be ran from there

WSJTZPKG=wsjtz-2.5.4-1.22.zip

cd ${BUILDDIR} || return
mkdir wsjt-z
cd wsjt-z
wget --tries 2 --connect-timeout=60  https://sourceforge.net/projects/wsjt-z/files/Source/$WSJTZPKG
unzip $WSJTZPKG
rm $WSJTZPKG
mv wsjtx src
cmake -DWSJT_SKIP_MANPAGES=ON-DWSJT_GENERATE_DOCS=OFF ./src
cmake --build .
#sudo cmake --build . --target install
#sudo cmake --build . --target uninstall

cat >wsjt-z.desktop <<EOF
[Desktop Entry]
Name=wsjt-z
GenericName=wsjtx-z
Comment=Popular Z Fork of wsjtx
Path=${BUILDDIR}/wsjt-z
Exec=${BUILDDIR}/wsjt-z/wsjtx
Terminal=false
Type=Application
Categories=Network;HamRadio;
EOF

sudo mv wsjt-z.desktop /usr/share/applications/


SpudGunMan avatar Oct 11 '22 05:10 SpudGunMan