mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
23 lines
580 B
Docker
23 lines
580 B
Docker
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 \
|
|
libspatialindex
|
|
|
|
RUN chmod -R a+rw /mxe/usr/i686-w64-mingw32.shared.posix |