Browse Source

contrib: vpx: restrict architectures

VPX has an exclusive list of supported instruction sets.

This follows it, unblocking contrib builds on other targets.
pull/162/head
Rémi Denis-Courmont 3 years ago
committed by Jean-Baptiste Kempf
parent
commit
293601d230
  1. 2
      contrib/src/vpx/rules.mak

2
contrib/src/vpx/rules.mak

@ -3,7 +3,9 @@
VPX_VERSION := 1.13.1
VPX_URL := $(GITHUB)/webmproject/libvpx/archive/v${VPX_VERSION}.tar.gz
ifneq ($(filter arm aarch64 i386 loongarch64 mipsel mips64el ppc64le x86_64, $(ARCH)),)
PKGS += vpx
endif
ifeq ($(call need_pkg,"vpx >= 1.5.0"),)
PKGS_FOUND += vpx
endif

Loading…
Cancel
Save