mirror of
https://github.com/linuxserver/docker-beets
synced 2025-12-06 08:23:31 +01:00
add gstreamer lib, reconfigure chromaprint cmake options to install fpcalc
This commit is contained in:
parent
1cacf240a4
commit
b5c9e356cb
2 changed files with 10 additions and 2 deletions
11
Dockerfile
11
Dockerfile
|
|
@ -18,16 +18,19 @@ RUN \
|
||||||
ffmpeg \
|
ffmpeg \
|
||||||
ffmpeg-libs \
|
ffmpeg-libs \
|
||||||
gdbm \
|
gdbm \
|
||||||
|
gstreamer1 \
|
||||||
jpeg \
|
jpeg \
|
||||||
lame \
|
lame \
|
||||||
libffi \
|
libffi \
|
||||||
libpng \
|
libpng \
|
||||||
nano \
|
nano \
|
||||||
openjpeg \
|
openjpeg \
|
||||||
|
py-gobject \
|
||||||
py-pip \
|
py-pip \
|
||||||
python \
|
python \
|
||||||
py-unidecode \
|
py-unidecode \
|
||||||
sqlite-libs \
|
sqlite-libs \
|
||||||
|
tar \
|
||||||
wget && \
|
wget && \
|
||||||
|
|
||||||
# install build packages
|
# install build packages
|
||||||
|
|
@ -56,11 +59,15 @@ RUN \
|
||||||
make install && \
|
make install && \
|
||||||
|
|
||||||
# compile chromaprint
|
# compile chromaprint
|
||||||
git clone https://bitbucket.org/acoustid/chromaprint.git \
|
mkdir -p \
|
||||||
/tmp/chromaprint && \
|
/tmp/chromaprint && \
|
||||||
|
curl -o /tmp/chromaprint-src.tar.gz -L \
|
||||||
|
https://bitbucket.org/acoustid/chromaprint/downloads/chromaprint-1.4.tar.gz && \
|
||||||
|
tar xf /tmp/chromaprint-src.tar.gz -C \
|
||||||
|
/tmp/chromaprint --strip-components=1 && \
|
||||||
cd /tmp/chromaprint && \
|
cd /tmp/chromaprint && \
|
||||||
cmake \
|
cmake \
|
||||||
-DBUILD_EXAMPLES=ON . \
|
-DBUILD_TOOLS=ON \
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
|
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
|
||||||
make && \
|
make && \
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,7 @@ See [Beets][beetsurl] for more info.
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
+ **07.12.16:** Edit cmake options for chromaprint, should now build and install fpcalc, add gstreamer lib
|
||||||
+ **14.10.16:** Add version layer information.
|
+ **14.10.16:** Add version layer information.
|
||||||
+ **01.10.16:** Add nano and editor variable -
|
+ **01.10.16:** Add nano and editor variable -
|
||||||
to allow editing of the config from the container command line.
|
to allow editing of the config from the container command line.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue