2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-04 00:10:58 -06:00
repo/extra/ffmpeg/build

27 lines
506 B
Plaintext
Raw Normal View History

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