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,11 @@
FROM cos7_base_qt
ARG QGIT_VER=2.9
RUN git clone --recursive https://github.com/tibirna/qgit.git && \
cd qgit && git checkout qgit-$QGIT_VER && \
PATH=/qt/$QT_VER/gcc_64/bin/:$PATH qmake qgit.pro && \
make
# Exécuter une commande au démarrage de l'image.
CMD ["/bin/bash"]

9
qgit/qgit.desktop Normal file
View File

@@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=qgit
GenericName=QGit
Comment=A git GUI viewer
Exec=qgit
Icon=qgit
Categories=Development;RevisionControl;Qt
Terminal=false

BIN
qgit/qgit.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 819 B

7
qgit/qgit_pre_step.sh Executable file
View File

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