Skip to content

Commit c7dca06

Browse files
committed
Updates
1 parent 1d18d97 commit c7dca06

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ ${BUILD_DIR}/${CHROMAPRINT_VERSION}:
100100
chromaprint-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)"

etc/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY . .
1010

1111
# Install dependencies
1212
RUN 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

0 commit comments

Comments
 (0)