Fixes for compiling ffmpeg

This commit is contained in:
Andrei Radulescu
2024-01-17 09:48:54 +02:00
parent e7190ebe29
commit 8807f29193
+6 -1
View File
@@ -6,7 +6,12 @@ wget https://ffmpeg.org/releases/ffmpeg-4.2.2.tar.bz2
tar xvf ffmpeg-4.2.2.tar.bz2
cd ffmpeg-4.2.2
./configure --enable-shared --disable-static
# avoid makeinfo: error parsing ./doc/t2h.pm: Undefined subroutine &Texinfo::Config::set_from_init_file called at ./doc/t2h.pm line 24.
# with --disable-htmlpages
# --disable-doc works too, disables building documentation completely
# https://gist.github.com/omegdadi/6904512c0a948225c81114b1c5acb875
# https://github.com/7Ji/archrepo/issues/10
./configure --enable-shared --disable-static --disable-htmlpages
make -j$(nproc)
checkinstall -yD --install=no --pkgname=ffmpeg