2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 16:32:28 +00:00
repo/extra/ffmpeg/build

26 lines
495 B
Plaintext
Raw Normal View History

2019-07-17 12:20:17 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-shared \
2019-07-24 06:52:04 +00:00
--enable-gpl \
--enable-version3 \
--enable-libass \
--enable-libmp3lame \
--enable-libopus \
--enable-libvorbis \
--enable-libtheora \
--enable-libvpx \
--enable-libx264 \
--enable-libx265 \
--enable-libxvid \
--enable-libwebp \
--enable-libdrm \
--disable-debug
2019-07-17 12:20:17 +00:00
2020-02-12 07:10:07 +00:00
make CC="${CC:-cc}"
2019-07-17 12:20:17 +00:00
make DESTDIR="$1" install
2019-08-19 00:39:07 +00:00
# Remove examples.
rm -rf "$1/usr/share/ffmpeg/examples"