31 lines
799 B
Makefile
31 lines
799 B
Makefile
PORTNAME= opencl
|
|
PORTVERSION= 3.0.14
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ohartmann@walstatt.org
|
|
COMMENT= Open Computing Language (OpenCL) specifications V3.0 (header files)
|
|
WWW= https://github.com/KhronosGroup/OpenCL-Headers/
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= KhronosGroup
|
|
GH_PROJECT= OpenCL-Headers OpenCL-CLHPP:clhpp
|
|
GH_TAGNAME= ${HEADER_TAG} ${CLHPP_TAG}:clhpp
|
|
|
|
# the header releases don't have tags yet, so use git commit for now
|
|
HEADER_TAG= v2023.04.17
|
|
CLHPP_TAG= v2023.04.17 # include missing CL/opencl.hpp
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
WRKSRC_SUBDIR= CL
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/CL
|
|
${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include/CL
|
|
${INSTALL_DATA} ${WRKSRC_clhpp}/include/CL/*.hpp \
|
|
${STAGEDIR}${PREFIX}/include/CL
|
|
|
|
.include <bsd.port.mk>
|