J'ai un programme en C++ à installer.
Il faut le compiler de cette façon:
Code : Tout sélectionner
mkdir build
cd build
cmake ..
makeMaintenant je souhaite en faire un deb avec checkinstall plutôt que de l'installer avec cmake install (Que je trouve moins propre).
Code : Tout sélectionner
checkinstall cmake .. -P cmake_install.cmakeCode : Tout sélectionner
Installing with cmake .. -P cmake_install.cmake ...
========================= Installation results ===========================
-- Install configuration: ""
======================== Installation successful ==========================
cp: cannot stat '//var/tmp/tmp.gLScjnMlsF/newfiles.tmp': No such file or directory
Some of the files created by the installation are inside the build
directory: /root/Ocelot/build
You probably don't want them to be included in the package,
especially if they are inside your home directory.
Do you want me to list them? [n]:
Should I exclude them from the package? (Saying yes is a good idea) [y]:
Et je ne trouve pas de solution à mon problème...
Auriez-vous des idées ? Merci d'avance.

