@beroal, its because ffmpeg source-code updates and ffmpeg developers exclude '--enable-libndi_newtek' from it. If you don't wanna wait just remove that from PKGBUILD and run makepkg again.
@clap22, i have an idea how PKGBUILD can be improved:
desired_options='
--enable-libndi_newtek
--disable-mbedtls
--enable-libmysofa
and-so-on
'
aval_opt=""
for i in $desired_options; do
if $(cat configure | grep -q --regexp="$(echo $i | sed 's/.*enable-//g' | sed 's/.*disable-//g')")
then aval_opt+="$i "
else msg2 " !!! Warning !!! Unavailable option DETECTED: $i"; fi
done
printf '%s\n' ' -> Running ffmpeg configure script...'
./configure \
--prefix='/usr' \
--extra-cflags="$_cflags" \
--extra-ldflags="$_ldflags" \
$aval_opt
Pinned Comments
saburouta commented on 2023-04-26 18:45 (UTC)
I adopted this package to keep it from falling off, but I haven't had the chance to update it yet.
I think only patches 40 and 60 still work. I'm not sure the other even need to be updated. I've been building with just 40 and 60.