kbd defs added for ibm 4978
[jackhill/qmk/firmware.git] / keyboards / xwhatsit / util / windows_crosscompile / Dockerfile
CommitLineData
95520199
PA
1# Copyright 2020 Purdea Andrei
2#
3# This program is free software: you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation, either version 2 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
79b64323
PA
16FROM debian:buster
17
18RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-utils
19# MXE dependencies
20RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
21 autoconf \
22 automake \
23 autopoint \
24 bash \
25 bison \
26 bzip2 \
27 flex \
28 g++ \
29 g++-multilib \
30 gettext \
31 git \
32 gperf \
33 intltool \
34 libc6-dev-i386 \
35 libgdk-pixbuf2.0-dev \
36 libltdl-dev \
37 libssl-dev \
38 libtool-bin \
39 libxml-parser-perl \
40 lzip \
41 make \
42 openssl \
43 p7zip-full \
44 patch \
45 perl \
46 pkg-config \
47 python \
48 ruby \
49 sed \
50 unzip \
51 wget \
52 xz-utils
53
54# not really needed, these are:
55RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends mc
56
57RUN git clone https://github.com/mxe/mxe.git
58RUN cd mxe && make qtbase
59RUN cd mxe && make hidapi
60
61ENV PATH="/mxe/usr/bin/:${PATH}"