name=ffmpeg version=3.2 update_url='https://ffmpeg.org/download.html' dlextract "http://ffmpeg.org/releases/$name-$version.tar.bz2" \ 'ce8fb81e2742eb70548956492c4625b8' header_end cd "$name-$version" # ffmpeg uses it's own configure script with arguably differing options to the # regular GNU autotools configure scripts. # Not using compile_configure due to that. ./configure --disable-static --enable-shared --enable-openssl \ --prefix="/$dir_prefix" \ --bindir="/$dir_prefix/$dir_bindir" \ --libdir="/$dir_prefix/$dir_libdir" \ --datadir="/$dir_prefix/$dir_datadir/$name" \ --mandir="/$dir_prefix/$dir_mandir" \ --docdir="/$dir_prefix/$dir_docdir/$name" make make DESTDIR="$dir_install" install # vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: