freebsd-ports/misc/onnx/Makefile
Po-Chuan Hsieh 69e2e87fa5
devel/protobuf: Update to 24.4
- Use USES=pathfix to fix .pc installation
- Bump PORTREVISION of dependent ports for shlib change

Changes:	https://github.com/protocolbuffers/protobuf/releases
2023-12-15 01:03:10 +08:00

34 lines
685 B
Makefile

PORTNAME= onnx
DISTVERSIONPREFIX= v
DISTVERSION= 1.14.1
PORTREVISION= 1
CATEGORIES= misc # machine-learning
MAINTAINER= yuri@FreeBSD.org
COMMENT= Open Neural Network eXchange
WWW= https://onnx.ai/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
#BUILD_DEPENDS= bash:shells/bash
LIB_DEPENDS= libprotobuf.so:devel/protobuf
USES= cmake:testing compiler:c++17-lang python:build
USE_GITHUB= yes
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_OFF= BUILD_ONNX_PYTHON
CMAKE_TESTING_ON= ONNX_BUILD_TESTS
CMAKE_TESTING_TARGET=
CXXFLAGS+= -Dstat64=stat
post-install:
@${FIND} ${STAGEDIR}${PREFIX}/include -type d -empty -delete
post-test:
cd ${BUILD_WRKSRC} && ./onnx_gtests
.include <bsd.port.mk>