2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

ffmpeg: update for new env

This commit is contained in:
Dylan Araps 2021-07-17 21:45:52 +03:00
parent 49e9387061
commit 80c33b1687
No known key found for this signature in database
GPG Key ID: 13295DAC2CF13B5C

View File

@ -1,8 +1,8 @@
#!/bin/sh -e
./configure \
--cc="${CC:-cc}" \
--cxx="${CXX:-c++}" \
--cc="$CC" \
--cxx="$CXX" \
--prefix=/usr \
--disable-debug \
--disable-libxml2 \
@ -30,6 +30,6 @@
--x86asmexe=nasm \
make
make DESTDIR="$1" install
make install
rm -rf "$1/usr/share/ffmpeg/examples"