blob: 27107c7037262e14f27203c832ca278a13866f08 (
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
25
26
27
28
29
30
31
32
33
34
35
|
# $NetBSD: Makefile,v 1.35 2021/06/12 08:18:14 cirnatdan Exp $
DISTNAME= x265_3.5
PKGNAME= ${DISTNAME:S/_/-/}
CATEGORIES= multimedia
MASTER_SITES= https://bitbucket.org/multicoreware/x265_git/downloads/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.x265.org/
COMMENT= High Efficiency Video Coding (HEVC)
LICENSE= gnu-gpl-v2
WRKSRC= ${WRKDIR}/${DISTNAME}/source
USE_CMAKE= yes
USE_LANGUAGES= c c++
CMAKE_ARGS+= -DENABLE_PIC=ON
# Set version here instead of relying on git; see patch-CMakeLists.txt
CMAKE_ARGS+= -DX265_VERSION=${PKGVERSION_NOREV}
CMAKE_ARGS+= -DX265_LATEST_TAG=${PKGVERSION_NOREV}
.include "options.mk"
.include "../../mk/bsd.prefs.mk"
.if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_ARCH} == "i386"
. if (${OPSYS} == "NetBSD" || ${OPSYS} == "FreeBSD") && ${MACHINE_ARCH} == "i386"
# Avoid text relocations
CMAKE_ARGS+= -DENABLE_ASSEMBLY=OFF
. else
TOOL_DEPENDS+= nasm>=2.13.0:../../devel/nasm
. endif
.endif
.include "../../mk/bsd.pkg.mk"
|