From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- libs/libvpx/MAKEPKG | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 libs/libvpx/MAKEPKG (limited to 'libs/libvpx/MAKEPKG') diff --git a/libs/libvpx/MAKEPKG b/libs/libvpx/MAKEPKG new file mode 100644 index 0000000..57afa4d --- /dev/null +++ b/libs/libvpx/MAKEPKG @@ -0,0 +1,42 @@ +#!/bin/mkpkg +# description: VP8/VP9 video codec library +# url: https://www.webmproject.org/ + +name=libvpx +version=1.17.0 +release=1 +depends=() +makedeps=(nasm) +source=(https://github.com/webmproject/libvpx/archive/v$version/$name-v$version.tar.gz) +sha256sums=( + "1020f184046187baa2985dbde38e0691f49c44088bca7a1842b0236c6081dc0a" +) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --enable-vp8 \ + --enable-vp9 \ + --enable-vp9-highbitdepth \ + --enable-vp9-temporal-denoising \ + --enable-runtime-cpu-detect \ + --enable-shared \ + --enable-postproc \ + --enable-pic \ + --disable-static \ + --disable-unit-tests \ + --disable-install-docs \ + --disable-install-srcs + + make + make DIST_DIR="$PKG/usr" install +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh -- cgit v1.3.1