summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2017-11-05 14:34:06 +1100
committerDamien Zammit <damien@zamaudio.com>2017-11-05 14:34:06 +1100
commitcda14f52bda68850585c3f9bb2f2e35c5392cdde (patch)
treef6163de1e4c5fc5254cf02d8b97e71fb413552cd
parent284e6a3cbba91d02d3e0fc3fb5daa386a4895dc0 (diff)
Dockerfile: Add docker build for full cross-compiling environment
-rw-r--r--Dockerfile82
1 files changed, 82 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..9450576
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,82 @@
+FROM ubuntu:14.04
+
+MAINTAINER Damien Zammit <damien@zamaudio.com>
+
+ENV PATH=$PATH:/opt/mingw64/bin:/opt/local/bin
+
+WORKDIR ~/
+
+RUN apt-get update -qq -y && apt-get install python-software-properties -y
+RUN apt-get install software-properties-common -y && add-apt-repository ppa:kxstudio-debian/mingw -y && add-apt-repository ppa:ubuntu-toolchain-r/test -y && apt-get update -qq -y
+RUN apt-get install wget -y
+
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-fftw-3/apple-macports-fftw-3_3.3.3-1_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-libsamplerate/apple-macports-libsamplerate_0.1.8-0_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-libsndfile/apple-macports-libsndfile_1.0.25-0_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-liblo/apple-macports-liblo_0.26-1_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-flac/apple-macports-flac_1.2.1-1_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-libogg/apple-macports-libogg_1.3.0-1_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-libvorbis/apple-macports-libvorbis_1.3.3-0_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-macports-libiconv/apple-macports-libiconv_1.14-0_all.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-x86-gcc/apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-x86-odcctools/apple-x86-odcctools_758.159-0kxstudio2_amd64.deb
+RUN wget -c https://launchpad.net/~flosoft/+archive/ubuntu/cross-apple/+files/apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb --no-check-certificate
+RUN wget http://ppa.launchpad.net/kxstudio-team/builds/ubuntu/pool/main/a/apple-x86-setup/apple-x86-setup_2_amd64.deb
+RUN wget https://launchpad.net/~kxstudio-team/+archive/ubuntu/builds/+files/mingw64-x-libsamplerate_0.1.8-1kxstudio1_all.deb
+
+# Apple cross compiler && build deps
+RUN dpkg -i apple-x86-odcctools_758.159-0kxstudio2_amd64.deb && \
+ dpkg -i apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb && \
+ dpkg -i apple-uni-sdk-10.5_20110407-0.flosoft1_amd64.deb && \
+ dpkg -i apple-x86-setup_2_amd64.deb && \
+ dpkg -i apple-macports-liblo_0.26-1_all.deb && \
+ dpkg -i apple-macports-fftw-3_3.3.3-1_all.deb && \
+ dpkg -i apple-macports-libiconv_1.14-0_all.deb && \
+ dpkg -i apple-macports-libogg_1.3.0-1_all.deb && \
+ dpkg -i apple-macports-libvorbis_1.3.3-0_all.deb && \
+ dpkg -i apple-macports-flac_1.2.1-1_all.deb && \
+ dpkg -i apple-macports-libsndfile_1.0.25-0_all.deb && \
+ dpkg -i apple-macports-libsamplerate_0.1.8-0_all.deb
+
+# Windows cross-compiler && build deps
+RUN apt-get install -y \
+ mingw64-x-gcc \
+ mingw64-x-binutils \
+ mingw64-x-pkgconfig \
+ mingw64-x-liblo \
+ mingw64-x-libsndfile
+#libsamplerate and fftw3f
+
+# GNU/Linux compiler && build deps
+RUN apt-get install -y \
+ g++-4.8 \
+ binutils \
+ pkg-config \
+ libx11-dev \
+ libgl1-mesa-dev \
+ liblo-dev \
+ fftw3-dev \
+ libsndfile-dev \
+ libsamplerate0-dev \
+ libjack-dev \
+ ladspa-sdk \
+ libpthread-stubs0-dev
+
+RUN apt-get install -y make
+
+RUN wget http://zamaudio.com/mbox2/apple-macports-libsamplerate_0.1.9-1_all.deb
+RUN dpkg -i apple-macports-libsamplerate_0.1.9-1_all.deb
+
+RUN wget http://zamaudio.com/mbox2/apple-macports-fftw-3_3.3.5-1_all.deb
+RUN dpkg -i apple-macports-fftw-3_3.3.5-1_all.deb
+
+RUN wget http://zamaudio.com/mbox2/mingw64-x-libsamplerate_0.1.9-1_all.deb
+RUN dpkg -i mingw64-x-libsamplerate_0.1.9-1_all.deb
+
+RUN wget http://zamaudio.com/mbox2/mingw64-x-fftw-3_3.3.3-3_all.deb
+RUN dpkg -i mingw64-x-fftw-3_3.3.3-3_all.deb
+
+RUN wget http://zamaudio.com/mbox2/mingw64-x-pthread_0.0.1-2_all.deb
+RUN dpkg -i mingw64-x-pthread_0.0.1-2_all.deb
+
+CMD []