Date: Monday, March 6, 2023 @ 16:15:29
Author: svenstaro
Revision: 1415647
upgpkg: av1an 0.4.0-2: back to ffmpeg 4.4
Otherwise this would block the ffmpeg 6 rebuild as it currently fails
to rebuild against that. Oh well. Hopefully upstream fixes this in
due time.
Modified:
av1an/trunk/PKGBUILD
----------+
PKGBUILD | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2023-03-06 16:08:13 UTC (rev 1415646)
+++ PKGBUILD 2023-03-06 16:15:29 UTC (rev 1415647)
@@ -3,13 +3,13 @@
pkgname=av1an
pkgver=0.4.0
-pkgrel=1
+pkgrel=2
pkgdesc='Cross-platform command-line encoding framework with per scene quality
encoding'
arch=('x86_64')
url='https://github.com/master-of-zen/Av1an'
license=('GPL3')
makedepends=('rust' 'nasm' 'clang')
-depends=('ffmpeg' 'aom' 'vapoursynth')
+depends=('ffmpeg4.4' 'aom' 'vapoursynth')
optdepends=('svt-av1: SVT-AV1 encoder support'
'rav1e: rav1e encoder support'
'libvpx: vpx encoder support'
@@ -23,6 +23,7 @@
build() {
cd "Av1an-${pkgver}-release"
export CFLAGS+=" -ffat-lto-objects"
+ export PKG_CONFIG_PATH='/usr/lib/ffmpeg4.4/pkgconfig'
cargo build --release --locked
}