mirror of
https://git.freebsd.org/ports.git
synced 2025-05-03 12:06:39 -04:00
31 lines
874 B
Makefile
31 lines
874 B
Makefile
PORTNAME= ${MPORTNAME:tl}
|
|
PORTVERSION= 8.2.1
|
|
CATEGORIES= math
|
|
|
|
COMMENT= Graph algorithms in the language of linear algebra
|
|
WWW= https://faculty.cse.tamu.edu/davis/suitesparse.html
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= localbase:ldflags
|
|
|
|
MPORTNAME= GraphBLAS
|
|
CMAKE_ARGS+= -DNSTATIC:BOOL=false
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= CSC20_OpenMP_GraphBLAS.pdf Davis_HPEC18.pdf \
|
|
GraphBLAS_API_C_2.0.0.pdf GraphBLAS_API_C_v13.pdf \
|
|
GraphBLAS_UserGuide.pdf HPEC19.pdf \
|
|
HPEC20_Python_and_MATLAB.pdf lagraph-grapl19.pdf \
|
|
toms_graphblas.pdf toms_parallel_grb2.pdf \
|
|
The_GraphBLAS_in_Julia_and_Python_the_PageRank_and_Triangle_Centralities.pdf
|
|
|
|
.include "${.CURDIR}/../../math/suitesparse/bsd.suitesparse.mk"
|
|
|
|
post-stage-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
${INSTALL_DATA} ${BUILD_WRKSRC}/Doc/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|