Package Details: wdsp-git r56.c55342c-1

Git Clone URL: https://aur.archlinux.org/wdsp-git.git (read-only, click to copy)
Package Base: wdsp-git
Description: NR0V DSP library ported to linux
Upstream URL: https://github.com/g0orx/wdsp
Licenses: GPL2
Conflicts: wdsp
Provides: wdsp
Submitter: joshuarubin
Maintainer: joshuarubin
Last Packager: joshuarubin
Votes: 1
Popularity: 0.000000
First Submitted: 2020-08-24 18:29 (UTC)
Last Updated: 2020-08-24 18:45 (UTC)

Dependencies (1)

Required by (1)

Sources (1)

Latest Comments

ra1nb0w commented on 2023-07-21 16:04 (UTC)

if you don't have the time to maintain the aur I am happy to overtake the ownership of wdsp-git. Let me know. thank you

ra1nb0w commented on 2023-07-21 13:05 (UTC)

g0orx doesn't update it anymore. We should use the dl1ycf's version. Otherwise I will create a new aur. This is a requirement for pihpsdr.

pkgname=wdsp-git
_pkgname=wdsp
pkgver=r115.068e9d9
pkgrel=1
pkgdesc='NR0V DSP library ported to linux'
arch=('i686' 'x86_64' 'aarch64')
# we use this version because it is up to date
# with windows's version
url='https://github.com/dl1ycf/wdsp'
license=('GPL2')
depends=('fftw')
makedepends=('git')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("${_pkgname}::git+https://github.com/dl1ycf/${_pkgname}")
sha256sums=('SKIP')

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

build() {
  cd "$_pkgname"
  make
}

package() {
  cd "$_pkgname"
  install -D wdsp.h -m 0644 "${pkgdir}/usr/include/wdsp.h"
  install -D libwdsp.so "${pkgdir}/usr/lib/libwdsp.so"
}

f4iey commented on 2023-03-23 21:04 (UTC)

In file included from linux_port.c:29:
comm.h:50:10: fatal error: fftw3.h: No such file or directory
   50 | #include "fftw3.h"
      |        

Please consider adding all the dependencies (starting with fftw).