Mercurial > hg > sonic-visualiser
comparison deploy/linux/docker/Dockerfile_v3.0beta1_fedora25 @ 1539:56b268b96fcb
Some Ubuntu/Fedora docker build material
author | Chris Cannam |
---|---|
date | Thu, 12 Jan 2017 14:09:44 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1538:06f061c54b66 | 1539:56b268b96fcb |
---|---|
1 FROM fedora:25 | |
2 MAINTAINER Chris Cannam <cannam@all-day-breakfast.com> | |
3 RUN dnf update -y && dnf groupinstall -y "Development tools" | |
4 RUN dnf install -y \ | |
5 gcc-c++ \ | |
6 alsa-lib-devel \ | |
7 bzip2-devel \ | |
8 fftw-devel \ | |
9 flac-devel \ | |
10 jack-audio-connection-kit-devel \ | |
11 libid3tag-devel \ | |
12 liblo-devel \ | |
13 liblrdf-devel \ | |
14 libmad-devel \ | |
15 liboggz-devel \ | |
16 libfishsound-devel \ | |
17 libsamplerate-devel \ | |
18 libsndfile-devel \ | |
19 libvorbis-devel \ | |
20 portaudio-devel \ | |
21 pulseaudio-libs-devel \ | |
22 qt5-qtbase-devel qt5-qtsvg-devel \ | |
23 sord-devel \ | |
24 speex-devel \ | |
25 rubberband-devel \ | |
26 git mercurial \ | |
27 curl wget \ | |
28 autoconf automake libtool \ | |
29 langpacks-en | |
30 ENV LANG en_US.UTF-8 | |
31 ENV LC_ALL en_US.UTF-8 | |
32 RUN git clone https://github.com/sandstorm-io/capnproto | |
33 WORKDIR capnproto/c++ | |
34 RUN ./setup-autotools.sh && autoreconf -i | |
35 RUN ./configure --enable-static --disable-shared | |
36 RUN make && make install | |
37 WORKDIR ../.. | |
38 ENV PKG_CONFIG_PATH /usr/local/lib/pkgconfig:$PKG_CONFIG_PATH | |
39 RUN hg clone https://code.soundsoftware.ac.uk/hg/sonic-visualiser | |
40 WORKDIR sonic-visualiser | |
41 RUN hg update -r782025ae1249 | |
42 RUN perl -i -p -e 's,#include "version.h",#include "../version.h",' main/Surveyer.cpp | |
43 RUN perl -i -p -e 's,#include "version.h",#include "../version.h",' main/PreferencesDialog.cpp | |
44 RUN ./configure | |
45 RUN make -j3 | |
46 RUN cp checker/vamp-plugin-load-checker . | |
47 # package...? |