mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
471a9adacc
Only decoder and encoder are installed. Other features are not maintained by the port. Besides, ffmpeg provides alternative decoder while svt-vp9 provides alternative encoder.
53 lines
1.3 KiB
Makefile
53 lines
1.3 KiB
Makefile
# Created by: Ashish SHUKLA <ashish@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libvpx
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.8.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= VP8/VP9 reference encoder/decoder
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= nasm:devel/nasm
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= webmproject
|
|
|
|
USES= compiler:c++11-lib cpe gmake perl5 shebangfix
|
|
CPE_VENDOR= john_koleszar
|
|
HAS_CONFIGURE= yes
|
|
USE_PERL5= build
|
|
USE_LDCONFIG= yes
|
|
SHEBANG_FILES= build/make/ads2gas.pl
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--disable-install-docs \
|
|
--disable-install-srcs \
|
|
--disable-unit-tests \
|
|
--enable-multi-res-encoding \
|
|
--enable-pic \
|
|
--enable-shared \
|
|
--enable-vp9-highbitdepth \
|
|
--enable-vp9-postproc \
|
|
--enable-vp9-temporal-denoising \
|
|
--size-limit=16384x16384
|
|
MAKE_ARGS+= verbose=yes
|
|
ALL_TARGET= # empty
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E '/gcctarget|link_with_cc/s/gcc[[:>:]]/$${CC}/' \
|
|
${WRKSRC}/build/make/configure.sh
|
|
# Extract (snapshot) version from the port instead of CHANGELOG
|
|
@${REINPLACE_CMD} '/^git_version_id/s/""/"${DISTVERSIONFULL}"/' \
|
|
${WRKSRC}/build/make/version.sh
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vpx*
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvpx.so.*.*.*
|
|
|
|
.include <bsd.port.mk>
|