mirror of
https://github.com/openbsd/ports.git
synced 2026-06-17 23:13:55 +02:00
e074af12e1
see https://aomedia.googlesource.com/aom/+log/v3.13.2..v3.13.3 in the end doesnt fix my build issue with firefox, but i've found another workaround...
40 lines
715 B
Makefile
40 lines
715 B
Makefile
COMMENT= Alliance for Open Media AV1 video codec
|
|
|
|
V= 3.13.3
|
|
DISTNAME= libaom-$V
|
|
PKGNAME= aom-$V
|
|
CATEGORIES= multimedia
|
|
|
|
SHARED_LIBS= aom 6.0
|
|
|
|
HOMEPAGE= https://aomedia.org/
|
|
SITES= https://storage.googleapis.com/aom-releases/
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
WANTLIB= c m pthread ${COMPILER_LIBCXX}
|
|
|
|
# XXX requires __atomic builtins
|
|
COMPILER= base-clang ports-gcc
|
|
|
|
MODULES= devel/cmake
|
|
|
|
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
|
|
BUILD_DEPENDS+= devel/yasm
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+=-DBUILD_SHARED_LIBS=On \
|
|
-DENABLE_DOCS=Off \
|
|
-DENABLE_TESTS=Off
|
|
|
|
.if ${MACHINE_ARCH} == "arm"
|
|
CONFIGURE_ARGS+=-DENABLE_NEON=Off
|
|
.endif
|
|
|
|
NO_TEST= Yes
|
|
|
|
.include <bsd.port.mk>
|