mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-18 18:17:51 +01:00
spotify & tomahawk
This commit is contained in:
parent
14cfa7dd3d
commit
4d182550b1
17
spotify/Dockerfile
Normal file
17
spotify/Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
FROM debian:jessie
|
||||||
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||||
|
|
||||||
|
# install wine
|
||||||
|
# and iceweasel since we have to sign in w facebook
|
||||||
|
# GROSS
|
||||||
|
RUN apt-get update && apt-get install -y \
|
||||||
|
wine \
|
||||||
|
--no-install-recommends && \
|
||||||
|
dpkg --add-architecture i386 && \
|
||||||
|
apt-get update && \
|
||||||
|
apt-get install -y \
|
||||||
|
wine32
|
||||||
|
|
||||||
|
COPY ./SpotifySetup.exe /usr/src/SpotifySetup.exe
|
||||||
|
|
||||||
|
CMD [ "wine", "/usr/src/SpotifySetup.exe" ]
|
|
@ -1,48 +1,12 @@
|
||||||
FROM debian:wheezy
|
FROM ubuntu:14.04
|
||||||
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
build-essential \
|
software-properties-common \
|
||||||
ca-certificates \
|
--no-install-recommends && \
|
||||||
cmake \
|
add-apt-repository ppa:tomahawk/ppa && \
|
||||||
curl \
|
apt-get update && \
|
||||||
libtag1c2a \
|
apt-get install -y \
|
||||||
libtag1-dev \
|
tomahawk
|
||||||
libqt4-dev \
|
|
||||||
libqt4-sql-sqlite \
|
|
||||||
libphonon-dev \
|
|
||||||
phonon-dbg \
|
|
||||||
libphononexperimental4 \
|
|
||||||
libboost-dev \
|
|
||||||
libboost-thread-dev \
|
|
||||||
zlib1g-dev \
|
|
||||||
libgnutls-dev \
|
|
||||||
libz-dev \
|
|
||||||
libqjson-dev \
|
|
||||||
libqca2-dev \
|
|
||||||
libx11-dev \
|
|
||||||
pkg-config \
|
|
||||||
libqca2-plugin-ossl \
|
|
||||||
libidn2-0-dev \
|
|
||||||
speex \
|
|
||||||
libsamplerate0-dev \
|
|
||||||
libfftw3-dev \
|
|
||||||
libgsasl7-dev \
|
|
||||||
automoc \
|
|
||||||
pulseaudio \
|
|
||||||
alsa-utils \
|
|
||||||
--no-install-recommends
|
|
||||||
|
|
||||||
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 && \
|
|
||||||
mkdir -p /root/attica/build && cd /root/attica/build && \
|
|
||||||
cmake .. && \
|
|
||||||
make && make install
|
|
||||||
|
|
||||||
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/ && \
|
|
||||||
mkdir -p /root/tomahawk/build && cd /root/tomahawk/build && \
|
|
||||||
cmake .. && \
|
|
||||||
make && \
|
|
||||||
mv /root/tomahawk/tomahawk /usr/bin/
|
|
||||||
|
|
||||||
ENTRYPOINT [ "/usr/bin/tomahawk" ]
|
ENTRYPOINT [ "/usr/bin/tomahawk" ]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user