blob: 6932ff1ec054ee48ba713ad16040e2bf9b1b45db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# $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"
|