Package Details: sdrpp-git 1.0.4.r561.eab4264-1

Git Clone URL: https://aur.archlinux.org/sdrpp-git.git (read-only, click to copy)
Package Base: sdrpp-git
Description: The bloat-free SDR receiver
Upstream URL: https://www.sdrpp.org/
Keywords: sdr++ sdr-plus-plus
Licenses: GPL3
Conflicts: sdrpp
Provides: sdrpp
Submitter: ryzerth
Maintainer: thotypous (ryzerth, 2WheelDev, eclairevoyant, dnaeon)
Last Packager: eclairevoyant
Votes: 21
Popularity: 1.70
First Submitted: 2021-02-14 23:36 (UTC)
Last Updated: 2024-01-24 00:49 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7

thotypous commented on 2021-02-23 14:04 (UTC) (edited on 2021-02-23 14:06 (UTC) by thotypous)

This package does not follow Arch guidelines for VCS package versioning, and there are some outdated depends.

These fixes are important for us because we are automatically building your package hourly at https://aur.chaotic.cx, and we currently have to deploy the fixes over your PKGBUILD.

Please:

(1) Change source and md5sums to

source=('git+https://github.com/AlexandreRouma/SDRPlusPlus')
md5sums=('SKIP')

(2) Remove the prepare() function

(3) Add a pkgver() function as follows. Don't use tag based versioning because tag names in the upstream repository are malformed.

pkgver() {
  cd "SDRPlusPlus"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

(4) Add the following depends which are now required: airspyhf-git airspy-git rtaudio, and remove portaudio since it is not used anymore.