forked from Lainports/freebsd-ports
armv7 needs -Wno-error:
/wrkdirs/usr/ports/multimedia/vvenc/work/vvenc-1.13.0/source/Lib/CommonLib/arm/neon/InterpolationFilter_neon.cpp:708:9: error: unused variable 'src8tOff' [-Werror,-Wunused-variable]
708 | int src8tOff = cStride;
| ^~~~~~~~
1 error generated.
33 lines
743 B
Makefile
33 lines
743 B
Makefile
PORTNAME= vvenc
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.13.0
|
|
CATEGORIES= multimedia
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Versatile Video Coding (VVC) encoder
|
|
WWW= https://www.hhi.fraunhofer.de/en/departments/vca/technologies-and-solutions/h266-vvc.html \
|
|
https://github.com/fraunhoferhhi/vvenc
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= cmake:testing compiler:c++14-lang
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= fraunhoferhhi
|
|
|
|
CMAKE_OFF= VVENC_ENABLE_WERROR
|
|
CMAKE_ON= BUILD_SHARED_LIBS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH:Marmv?} || ${ARCH} == i386 || ${ARCH} == powerpc
|
|
CMAKE_OFF+= VVENC_ENABLE_X86_SIMD
|
|
.endif
|
|
|
|
.if ${ARCH} == riscv64
|
|
CMAKE_OFF+= VVENC_ENABLE_LINK_TIME_OPT
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|