4fff0db399
The package does not include a change log, but one major feature added since 20140106 is support for transforms of sizes other than powers of two by means of the chirp Z transform.
27 lines
725 B
Makefile
27 lines
725 B
Makefile
# $NetBSD: Makefile,v 1.2 2017/07/04 19:51:42 gson Exp $
|
|
|
|
GIT_COMMIT= fe86885ecafd0d16eb122f3212403d1d5a86e24e
|
|
|
|
DISTNAME= ${GIT_COMMIT}
|
|
PKGNAME= ffts-20170617
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=anthonix/}/ffts/archive/
|
|
|
|
MAINTAINER= gson@NetBSD.org
|
|
HOMEPAGE= https://github.com/anthonix/ffts
|
|
COMMENT= The Fastest Fourier Transform in the South
|
|
LICENSE= modified-bsd
|
|
|
|
WRKSRC= ${WRKDIR}/ffts-${GIT_COMMIT}
|
|
|
|
USE_TOOLS+= gmake autoconf automake autoheader aclocal
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-sse --enable-single
|
|
|
|
pre-configure:
|
|
set -e; cd ${WRKSRC}; \
|
|
aclocal; autoheader; automake -a --foreign -i; autoconf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|