openbsd-ports/multimedia/x264/Makefile
ajacoutot 8f5e792c9a Update to 20191220 snapshot.
from Brad (maintainer)
2019-12-24 15:03:18 +00:00

51 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.54 2019/12/24 15:03:18 ajacoutot Exp $
COMMENT= free H.264/MPEG-4 AVC encoder
V= 20191220
DISTNAME= x264-snapshot-${V}-2245
PKGNAME= x264-${V}
CATEGORIES= multimedia
MASTER_SITES= https://comstyle.com/source/
EXTRACT_SUFX= .tar.xz
SHARED_LIBS= x264 21.0
HOMEPAGE= https://www.videolan.org/developers/x264.html
MAINTAINER= Brad Smith <brad@comstyle.com>
# GPLv2+
PERMIT_PACKAGE= Yes
WANTLIB= c m pthread
COMPILER= base-clang ports-gcc
COMPILER_LANGS= c
.if ${MACHINE_ARCH} == "amd64"
BUILD_DEPENDS+= devel/nasm
.endif
USE_GMAKE= Yes
CONFIGURE_STYLE= simple
CONFIGURE_ENV= API=${LIBx264_VERSION}
CONFIGURE_ARGS+=--prefix=${PREFIX} \
--enable-pic \
--enable-shared \
--enable-static \
--system-libx264 \
--disable-ffms \
--disable-gpac \
--disable-lavf \
--disable-swscale
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "mips64" || \
${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "powerpc"
CONFIGURE_ARGS+=--disable-asm
.endif
NO_TEST= Yes
.include <bsd.port.mk>