blob: bc902623441e02c99f5b1b7e1cfd1b3ce9ad529d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
PORTNAME= gemmlowp
DISTVERSION= g20190812
CATEGORIES= math
MAINTAINER= yuri@FreeBSD.org
COMMENT= Low-precision matrix multiplication library
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= google
GH_TAGNAME= dc69acd
NO_BUILD= yes
NO_ARCH= yes
do-install:
.for dir in public fixedpoint eight_bit_int_gemm internal profiling meta
@cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${PREFIX}/include/${PORTNAME}
.endfor
@${FIND} ${STAGEDIR} -name "*.cc" -delete
.include <bsd.port.mk>
|