Chris@1910
|
1 # This pulls the latest versions of capnp & SV from repos - so you
|
Chris@1910
|
2 # will need to defeat the Docker cache by destroying the container
|
Chris@1910
|
3 # each time you want to update it
|
Chris@1910
|
4 #
|
Chris@1910
|
5 FROM ubuntu:14.04
|
Chris@1910
|
6 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com>
|
Chris@1910
|
7 RUN apt-get update && \
|
Chris@1910
|
8 apt-get install -y \
|
Chris@1910
|
9 software-properties-common \
|
Chris@1910
|
10 build-essential \
|
Chris@1910
|
11 libbz2-dev \
|
Chris@1910
|
12 libfftw3-dev \
|
Chris@1910
|
13 libfishsound1-dev \
|
Chris@1910
|
14 libid3tag0-dev \
|
Chris@1910
|
15 liblo-dev \
|
Chris@1910
|
16 liblrdf0-dev \
|
Chris@1910
|
17 libmad0-dev \
|
Chris@1910
|
18 liboggz2-dev \
|
Chris@1910
|
19 libpulse-dev \
|
Chris@1922
|
20 libasound2-dev \
|
Chris@1931
|
21 libjack-dev \
|
Chris@1910
|
22 libsamplerate-dev \
|
Chris@1910
|
23 libsndfile-dev \
|
Chris@1910
|
24 libsord-dev \
|
Chris@1910
|
25 libxml2-utils \
|
Chris@1910
|
26 libgl1-mesa-dev \
|
Chris@1910
|
27 raptor-utils \
|
Chris@1910
|
28 librubberband-dev \
|
Chris@1910
|
29 git \
|
Chris@1910
|
30 mercurial \
|
Chris@1910
|
31 curl wget \
|
Chris@1910
|
32 mlton \
|
Chris@1910
|
33 autoconf automake libtool lintian
|
Chris@1921
|
34
|
Chris@1931
|
35 # NB we do not install portaudio. We don't want to end up including it
|
Chris@1931
|
36 # in the bundle, because it comes with a dependency on the JACK
|
Chris@1931
|
37 # library which we don't want to bundle and can't assume people will
|
Chris@1931
|
38 # have. However, we do install JACK because the Dynamic JACK mechanism
|
Chris@1931
|
39 # should ensure we can detect, configure, and use that without
|
Chris@1931
|
40 # actually linking against it. We also have Pulse as the default I/O.
|
Chris@1921
|
41
|
Chris@1910
|
42 RUN apt-add-repository -y ppa:beineri/opt-qt-5.10.1-trusty
|
Chris@1910
|
43 RUN apt-get update && \
|
Chris@1910
|
44 apt-get install -y \
|
Chris@1910
|
45 qt510base \
|
Chris@1910
|
46 qt510svg
|
Chris@1910
|
47 RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
Chris@1910
|
48 RUN locale-gen en_US.UTF-8
|
Chris@1910
|
49 ENV LANG en_US.UTF-8
|
Chris@1910
|
50 ENV LANGUAGE en_US:en
|
Chris@1910
|
51 ENV LC_ALL en_US.UTF-8
|
Chris@1924
|
52 RUN hg clone -r[[REVISION]] https://code.soundsoftware.ac.uk/hg/sonic-visualiser
|
Chris@1910
|
53 RUN git clone https://github.com/sandstorm-io/capnproto
|
Chris@1910
|
54 WORKDIR capnproto/c++
|
Chris@1927
|
55 RUN ./setup-autotools.sh && autoreconf -i && ./configure && make -j3 && make install
|
Chris@1924
|
56 WORKDIR ../../sonic-visualiser
|
Chris@1910
|
57 ENV QTDIR /opt/qt510
|
Chris@1910
|
58 ENV PATH /opt/qt510/bin:$PATH
|
Chris@1910
|
59 RUN ./configure
|
Chris@1910
|
60 RUN make -j3
|
Chris@1910
|
61 RUN deploy/linux/deploy-appimage.sh
|
Chris@1910
|
62 RUN tar cvf output.tar *.AppImage && cp output.tar ..
|