File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ ${BUILD_DIR}/${CHROMAPRINT_VERSION}:
100100chromaprint-configure : mkdir ${BUILD_DIR}/${CHROMAPRINT_VERSION}
101101 @echo " Configuring ${CHROMAPRINT_VERSION} => ${PREFIX} "
102102 cmake \
103- -DCMAKE_POLICY_VERSION_MINIMUM=3.5 \
104103 -DCMAKE_BUILD_TYPE=Release \
105104 -DBUILD_SHARED_LIBS=0 \
106105 -DBUILD_TESTS=0 \
@@ -216,9 +215,9 @@ ffmpeg-dep:
216215 $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists freetype2 && echo "--enable-libfreetype") )
217216 $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists theora && echo "--enable-libtheora") )
218217 $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists vorbis && echo "--enable-libvorbis") )
219- $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists vpx && echo "--enable-libvpx ") )
218+ $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists opus && echo "--enable-libopus ") )
220219 $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists x264 && echo "--enable-libx264") )
221220 $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists x265 && echo "--enable-libx265") )
222- $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists opus && echo "--enable-libopus") )
223221 $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists xvid && echo "--enable-libxvid") )
222+ $(eval FFMPEG_CONFIG := $(FFMPEG_CONFIG ) $(shell pkg-config --exists vpx && echo "--enable-libvpx") )
224223 @echo " FFmpeg configuration: $( FFMPEG_CONFIG) "
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ COPY . .
1010
1111# Install dependencies
1212RUN set -x && apt update -y \
13- && apt install -y ca-certificates lsb-release cmake nasm curl \
13+ && apt install -y ca-certificates lsb-release build-essential cmake nasm curl \
1414 && apt install -y libfreetype-dev libmp3lame-dev libopus-dev libvorbis-dev libvpx-dev libx264-dev libx265-dev libnuma-dev
1515
1616# Build all the commands
You can’t perform that action at this time.
0 commit comments