2018-10-12 17:38:18 +02:00
|
|
|
FROM buildpack-deps:stretch
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y --no-install-recommends autopoint bison flex gperf libtool ruby scons unzip p7zip-full intltool libtool libtool-bin nsis zip
|
|
|
|
|
|
|
|
WORKDIR /mxe
|
|
|
|
|
|
|
|
RUN git clone https://github.com/mxe/mxe . || git pull origin master
|
|
|
|
RUN make MXE_TARGETS=i686-w64-mingw32.shared.posix -j 16 \
|
|
|
|
qca \
|
|
|
|
qtlocation \
|
|
|
|
qscintilla2 \
|
|
|
|
qwt \
|
|
|
|
gdal \
|
|
|
|
qtkeychain \
|
|
|
|
qtserialport \
|
|
|
|
qtwebkit \
|
|
|
|
qtwinextras \
|
|
|
|
libzip \
|
|
|
|
gsl \
|
2018-12-07 21:42:35 +01:00
|
|
|
libspatialindex \
|
|
|
|
exiv2
|
|
|
|
|
|
|
|
RUN chmod -R a+rw /mxe/usr/i686-w64-mingw32.shared.posix
|
2018-10-12 17:38:18 +02:00
|
|
|
|