Create repository

This commit is contained in:
Loic Guegan 2022-02-23 18:11:55 +01:00
commit ce941c146a
127 changed files with 16162 additions and 0 deletions

10
tools/docker/archlinux Normal file
View file

@ -0,0 +1,10 @@
FROM archlinux/base
RUN pacman -Sy --noconfirm && pacman -S --noconfirm boost cmake base-devel git sudo
RUN useradd --system --create-home aur
RUN echo 'aur ALL=NOPASSWD: /usr/bin/pacman' > /etc/sudoers.d/aur
RUN cd /home/aur && runuser -u aur -- git clone https://aur.archlinux.org/yay.git && cd yay && runuser -u aur -- makepkg -si --noconfirm && cd -
RUN runuser -u aur -- yay -Sy --noconfirm wxgtk3-dev
RUN ln -sf /usr/bin/wx-config-gtk3 /usr/bin/wx-config
ENTRYPOINT /usr/bin/bash

4
tools/docker/debian Normal file
View file

@ -0,0 +1,4 @@
FROM debian:stable
RUN apt-get -qq update
RUN apt-get -qq install -y cmake libboost-all-dev build-essential libwxgtk3.0-dev

4
tools/docker/fedora Normal file
View file

@ -0,0 +1,4 @@
FROM fedora:latest
RUN dnf upgrade -y
RUN dnf install -y cmake boost boost-devel make automake gcc gcc-c++ wxBase3-devel wxGTK3-devel