Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name=ffmpeg
|
|
|
|
version=3.2.2
|
|
|
|
update_url='https://ffmpeg.org/download.html'
|
|
|
|
|
|
|
|
dlextract "http://ffmpeg.org/releases/$name-$version.tar.bz2" \
|
|
|
|
'82cf25d36df70ee995bbdb3efc079934'
|
|
|
|
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 \
|
|
|
|
--enable-libvpx \
|
|
|
|
--enable-libvorbis \
|
|
|
|
--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:
|