summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2019-01-12 12:09:15 +1100
committerDamien Zammit <damien@zamaudio.com>2019-01-12 12:09:15 +1100
commit13e20efb84b4f6b825e54211cac731d20eb56edc (patch)
tree221d57de493332a336d4a995c5a60c8327e28fbc
parentb8a1eae96acca9c25ee825019abc08cd76daa295 (diff)
Dockerfile: Move deps urls since launchpad seems broken
-rw-r--r--Dockerfile61
1 files changed, 32 insertions, 29 deletions
diff --git a/Dockerfile b/Dockerfile
index 686bc7c..c1042e7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,19 +10,30 @@ 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
+
+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/apple-macports-flac_1.2.1-1_all.deb
+RUN dpkg -i apple-macports-flac_1.2.1-1_all.deb
+RUN wget http://zamaudio.com/mbox2/apple-macports-libiconv_1.14-0_all.deb
+RUN dpkg -i apple-macports-libiconv_1.14-0_all.deb
+RUN wget http://zamaudio.com/mbox2/apple-macports-liblo_0.26-1_all.deb
+RUN dpkg -i apple-macports-liblo_0.26-1_all.deb
+RUN wget http://zamaudio.com/mbox2/apple-macports-libogg_1.3.0-1_all.deb
+RUN dpkg -i apple-macports-libogg_1.3.0-1_all.deb
+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-libsndfile_1.0.25-0_all.deb
+RUN dpkg -i apple-macports-libsndfile_1.0.25-0_all.deb
+RUN wget http://zamaudio.com/mbox2/apple-macports-libvorbis_1.3.3-0_all.deb
+RUN dpkg -i apple-macports-libvorbis_1.3.3-0_all.deb
+RUN wget http://zamaudio.com/mbox2/apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb
+RUN dpkg -i apple-x86-gcc_4.2.1~5646-1kxstudio2_amd64.deb
+RUN wget http://zamaudio.com/mbox2/apple-x86-odcctools_758.159-0kxstudio2_amd64.deb
+RUN dpkg -i apple-x86-odcctools_758.159-0kxstudio2_amd64.deb
+RUN wget http://zamaudio.com/mbox2/apple-x86-setup_2_amd64.deb
+RUN dpkg -i apple-x86-setup_2_amd64.deb
# Apple cross compiler && build deps
RUN dpkg -i apple-x86-odcctools_758.159-0kxstudio2_amd64.deb && \
@@ -30,13 +41,13 @@ RUN dpkg -i apple-x86-odcctools_758.159-0kxstudio2_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-fftw-3_3.3.5-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
+ dpkg -i apple-macports-libsamplerate_0.1.9-1_all.deb
# Windows cross-compiler && build deps
RUN apt-get install -y \
@@ -47,6 +58,13 @@ RUN apt-get install -y \
mingw64-x-libsndfile
#libsamplerate and fftw3f
+RUN wget http://zamaudio.com/mbox2/mingw64-x-fftw-3_3.3.5-1_all.deb
+RUN dpkg -i mingw64-x-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-pthread_0.0.1-3_all.deb
+RUN dpkg -i mingw64-x-pthread_0.0.1-3_all.deb
+
# GNU/Linux compiler && build deps
RUN apt-get install -y \
g++-4.8 \
@@ -64,19 +82,4 @@ RUN apt-get install -y \
RUN apt-get install -y make zip
-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.5-1_all.deb
-RUN dpkg -i mingw64-x-fftw-3_3.3.5-1_all.deb
-
-RUN wget http://zamaudio.com/mbox2/mingw64-x-pthread_0.0.1-3_all.deb
-RUN dpkg -i mingw64-x-pthread_0.0.1-3_all.deb
-
CMD []