mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
d1809c9ba4
High Efficiency Video Coding (HEVC) is the latest generation video compression standard. * This standard was developed by the ISO/IEC Moving Picture Experts Group (MPEG) and ITU-T Video Coding Experts Group (VCEG), through their Joint Collaborative Team on Video Coding (JCT-VC) * HEVC is also known as ISO/IEC 23008-2 MPEG-H Part 2 and ITU-T H.265 * HEVC provides superior video quality and up to twice the data compression as the previous standard (H.264/MPEG-4 AVC) * HEVC can support 8K Ultra High Definition video, with a picture size up to 8192x4320 pixels WWW: http://www.x265.org
29 lines
604 B
Makefile
29 lines
604 B
Makefile
# Created by: adamw
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= x265
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= http://bitbucket.org/multicoreware/${PORTNAME}/get/
|
|
DISTNAME= ${PORTVERSION}
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= adamw@FreeBSD.org
|
|
COMMENT= H.265/High Efficiency Video Coding (HEVC) format
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= yasm:${PORTSDIR}/devel/yasm
|
|
|
|
USES= tar:bz2 cmake
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/multicoreware-${PORTNAME}-c1e4fc0162c1/source
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|$${LIB_INSTALL_DIR}/pkgconfig|libdata/pkgconfig|' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|