commit initial, premières applications gérées: qtcreator, git, qgit, qcachegrind, valgrind, kdiff3

This commit is contained in:
Thomas Briffard
2021-06-29 10:17:23 +02:00
commit 9fad802282
32 changed files with 713 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
FROM cos7_base
ARG GIT_VER=2.32.0
RUN yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel perl-CPAN perl-devel && \
wget https://github.com/git/git/archive/refs/tags/v$GIT_VER.tar.gz && \
tar -xvf v$GIT_VER.tar.gz && \
cd git-$GIT_VER && \
make configure && ./configure --prefix=/usr/local && \
make -j$(nproc) && make install
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

9
git/git.desktop Normal file
View File

@@ -0,0 +1,9 @@
[Desktop Entry]
Name=git
Type=Application
Exec=git
Icon=git
Comment=analysis tools
Categories=Development
StartupWMClass=git
Terminal=false

BIN
git/git.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

7
git/git_pre_step.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
fichierIcon=/build/git.png
fichierDesktop=/build/git.desktop
AUTRES_OPTIONS="-i $fichierIcon -d $fichierDesktop"