mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
26 lines
594 B
Docker
26 lines
594 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 \
|
|
exiv2
|
|
|
|
RUN chmod -R a+rw /mxe/usr/i686-w64-mingw32.shared.posix
|
|
|