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

26 lines
496 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
2019-10-08 18:47:12 +00:00
make CC="${CC:-gcc}"
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"