1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/math/fann/Makefile
Piotr Kubaj 40cccee324 math/fann: fix plist without libomp
pkg-static: Unable to access file /wrkdirs/usr/ports/math/fann/work/stage/usr/local/include/parallel_fann.h:No such file or directory
pkg-static: Unable to access file /wrkdirs/usr/ports/math/fann/work/stage/usr/local/include/parallel_fann.hpp:No such file or directory
2023-05-09 19:54:43 +00:00

26 lines
445 B
Makefile

PORTNAME= fann
DISTVERSION= 2.2.0-20230126
CATEGORIES= math science
MAINTAINER= tzhuan@csie.org
COMMENT= Free open source neural network library
WWW= https://leenissen.dk/
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/LICENSE.md
USES= cmake pathfix
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= libfann
GH_TAGNAME= 8409b42
.if !exists(/usr/include/omp.h)
PLIST_SUB= OPENMP="@comment "
.else
PLIST_SUB= OPENMP=""
.endif
.include <bsd.port.mk>