blob: 3054dd2df6d4c51642ac0d7b77cdc8c800011ad4 (
plain) (
blame)
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
28
29
30
31
32
33
34
35
36
37
38
|
PORTNAME= onnx
DISTVERSIONPREFIX= v
DISTVERSION= 1.17.0
PORTREVISION= 3
CATEGORIES= misc # machine-learning
MAINTAINER= yuri@FreeBSD.org
COMMENT= Open Neural Network eXchange
WWW= https://onnx.ai \
https://github.com/onnx/onnx
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
#BUILD_DEPENDS= bash:shells/bash
LIB_DEPENDS= libabsl_base.so:devel/abseil \
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
# tests as of 1.17.0: 84 tests from 11 test suites ran. (160 ms total)
.include <bsd.port.mk>
|