Package Details: wsjtx 3.0.1-1

Git Clone URL: https://aur.archlinux.org/wsjtx.git (read-only, click to copy)
Package Base: wsjtx
Description: Software for Amateur Radio Weak-Signal Communication (JT9 and JT65)
Upstream URL: https://sourceforge.net/projects/wsjt/
Licenses: GPL-3.0-only
Submitter: 7h0ma5
Maintainer: Bevan
Last Packager: Bevan
Votes: 34
Popularity: 1.28
First Submitted: 2015-06-09 13:48 (UTC)
Last Updated: 2026-05-05 18:32 (UTC)

Latest Comments

1 2 3 4 5 6 .. 11 Next › Last »

Bevan commented on 2026-05-05 18:33 (UTC)

Thanks giovanni! This change is required due to the recent GCC update. I updated the package and included that line.

giovanni commented on 2026-05-05 06:11 (UTC)

Version 3.0.1 of wsjtx is now available. If you encounter any issues during compilation, add this line to your build:

-DCMAKE_CXX_FLAGS=‘-Wno-error=maybe-uninitialized’

aionitaro commented on 2026-05-03 10:41 (UTC) (edited on 2026-05-03 11:02 (UTC) by aionitaro)

This version seems to have issue with multithreaded decoding on FT-8. It can see the waterfall signals but no decoding. Turning multithreaded decoding off works fine.

Bevan commented on 2026-04-27 19:09 (UTC)

@Refutationalist: Since the original WSJT-X is still maintained, I think there is value in maintaining it in the AUR. I adopted and updated the package. If you are interested, I'd be glad to add you as co-maintainer!

Refutationalist commented on 2026-03-30 19:45 (UTC)

I was thinking of taking this package on, but I suspect people have moved to wsjtx-improved. Would working on this package be helpful?

Bevan commented on 2025-12-27 16:38 (UTC)

@AI5C: Are you planning to update this package anytime soon? If not, would you mind disowning it so that others can step in?

maximalist commented on 2025-08-20 06:46 (UTC) (edited on 2025-08-20 06:48 (UTC) by maximalist)

#PKGBUILD
pkgname=wsjtx
pkgver=2.7.0
pkgrel=1
pkgdesc="Software for Amateur Radio Weak-Signal Communication (FST4, FT4, FT8, JT4, JT9, JT65, Q65, MSK144, WSPR, FST4W, Echo)"
arch=('x86_64')
url="https://sourceforge.net/projects/wsjt/"
license=('GPL-3')
depends=(
    'fftw'
    'hamlib>=4.5'
    'libusb'
    'portaudio'
    'qt5-base'
    'qt5-multimedia'
    'qt5-serialport'
    'qt5-tools'
    'readline'
)
makedepends=(
    'asciidoc'
    'asciidoctor'
    'boost'
    'cmake'
    'gcc-fortran'
    'git'
    'texinfo'
)
provides=('wsjtx')
conflicts=('wsjtx')
source=("https://sourceforge.net/projects/wsjt/files/$pkgname-$pkgver/$pkgname-$pkgver.tgz")
sha256sums=('3788f5df636af792514609ec2b4abe58477aa5f0ad32cb826424866fc21cec93')
options=('!lto')

prepare() {
    tar -xzf "$pkgname-$pkgver/src/$pkgname.tgz" -C "$srcdir"
    mkdir -p "$srcdir/build"
}

build() {
    cmake \
        -Wno-dev \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DCMAKE_BUILD_TYPE=Release \
        -S "$srcdir/$pkgname" \
        -B "$srcdir/build"
}

package() {
    cd "$srcdir/build"
    make DESTDIR="$pkgdir" install
}

MAN91 commented on 2025-06-27 09:46 (UTC)

hi friend please help CMake Error at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 3.5 has been removed from CMake.

petrkr commented on 2025-04-09 14:57 (UTC)

Can not build

CMake Error at CMakeLists.txt:1 (cmake_minimum_required):
  Compatibility with CMake < 3.5 has been removed from CMake.

  Update the VERSION argument <min> value.  Or, use the <min>...<max> syntax
  to tell CMake that the project requires at least <min> but has been updated
  to work with policies introduced by <max> or earlier.

  Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.

mh00h commented on 2025-02-12 01:21 (UTC)

Note to self: a full clean build when getting a libboost_log_setup.so.1.87.0 error can be done by running paru --rebuld -S wsjtx