9709018dd0
KISS FFT - A mixed-radix Fast Fourier Transform There are many great fft libraries already around. Kiss FFT is not trying to be better than any of them. It only attempts to be a reasonably efficient, moderately useful FFT that can use fixed or floating data types and can be incorporated into someone's C program in a few minutes with trivial licensing.
22 lines
552 B
Makefile
22 lines
552 B
Makefile
# $NetBSD: Makefile,v 1.1 2021/04/09 11:00:28 nia Exp $
|
|
|
|
DISTNAME= kissfft-131.1.0
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=mborgerding/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/mborgerding/kissfft
|
|
COMMENT= Simple mixed-radix Fast Fourier Transform
|
|
LICENSE= modified-bsd
|
|
|
|
USE_CMAKE= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
CMAKE_ARGS+= -DKISSFFT_TEST=OFF
|
|
|
|
PKGCONFIG_OVERRIDE+= kissfft.pc.in
|
|
PKGCONFIG_OVERRIDE+= kissfft-float.pc
|
|
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|