This commit is contained in:
Jessica Frazelle 2015-01-06 18:56:00 -08:00
parent a342821715
commit 39de272fca

View File

@ -1,13 +1,17 @@
FROM debian:jessie FROM debian:wheezy
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
build-essential \ build-essential \
ca-certificates \
cmake \ cmake \
curl \
libtag1c2a \ libtag1c2a \
libtag1-dev \ libtag1-dev \
libqt4-dev \ libqt4-dev \
libqt4-sql-sqlite \ libqt4-sql-sqlite \
libphonon-dev \ libphonon-dev \
phonon-dbg \
libphononexperimental4 \
libboost-dev \ libboost-dev \
libboost-thread-dev \ libboost-thread-dev \
zlib1g-dev \ zlib1g-dev \
@ -23,17 +27,20 @@ RUN apt-get update && apt-get install -y \
libsamplerate0-dev \ libsamplerate0-dev \
libfftw3-dev \ libfftw3-dev \
libgsasl7-dev \ libgsasl7-dev \
automoc \
pulseaudio \
alsa-utils \
--no-install-recommends --no-install-recommends
ADD ftp://ftp.kde.org/pub/kde/stable/attica/attica-0.4.1.tar.bz2 /root/attica RUN curl -sSL http://download.kde.org/stable/attica/attica-0.4.1.tar.bz2 | tar -v -C /root -xj && \
mv /root/attica-0.4.1 /root/attica && \
RUN mkdir /root/attica/build && cd /root/attica/build && \ mkdir -p /root/attica/build && cd /root/attica/build && \
cmake .. && \ cmake .. && \
make && make install make && make install
ADD https://github.com/tomahawk-player/tomahawk.git /root/tomahawk RUN curl -sSL https://github.com/tomahawk-player/tomahawk/archive/0.8.2.tar.gz | tar -v -C /root -xz && \
mv /root/tomahawk-0.8.2 /root/tomahawk/ && \
RUN mkdir /root/tomahawk/build && cd /root/tomahawk/build && \ mkdir -p /root/tomahawk/build && cd /root/tomahawk/build && \
cmake .. && \ cmake .. && \
make && \ make && \
mv /root/tomahawk/tomahawk /usr/bin/ mv /root/tomahawk/tomahawk /usr/bin/