CMakeUserUseDebian: Difference between revisions

From KitwarePublic
Jump to navigationJump to search
(Add explicit preformat markup)
(Replace content with link to new CMake community wiki)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
[[CMake_User_Contributed_Macros|Back]]
{{CMake/Template/Moved}}


==DEPRECATED==
This page has moved [https://gitlab.kitware.com/cmake/community/wikis/doc/cpack/UseDebian here].
 
The information on this page is now deprecated. See [[CMake:CPackPackageGenerators#DEB_.28UNIX_only.29|CPack DEB Generator]] instead.
 
==Description==
The '''UseDebian''' CMake module simplifies the Debian package generation
using both CPack and CMake.
It has been done because CPack does not have an deb generator.
This CMake macro can be used anywhere <tt>ar</tt> is available (no debian specific tool are required).
http://www.itk.org/Wiki/index.php?title=CMakeUserUseDebian&action=edit&section=1
 
==Usage==
The usage is simple:
* put the macro file "[http://gdcm.svn.sourceforge.net/viewvc/gdcm/trunk/CMake/UseDebian.cmake?view=markup UseDebian.cmake]" in your CMAKE_MODULE_PATH, as well as [http://gdcm.svn.sourceforge.net/viewvc/gdcm/trunk/CMake/FindMd5sum.cmake?view=markup FindMd5sum.cmake] (until cmake -E can do md5sum [http://public.kitware.com/pipermail/cmake/2007-April/013629.html ref]).
* Then add something like this to your CMakeLists.txt
 
<pre>
IF(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake")
  SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Grass Root DiCoM")
  SET(CPACK_PACKAGE_VENDOR "gdcm")
  SET(CPACK_PACKAGE_VERSION_MAJOR "${GDCM_VERSION_MAJOR}")
  SET(CPACK_PACKAGE_VERSION_MINOR "${GDCM_VERSION_MINOR}")
  SET(CPACK_PACKAGE_VERSION_PATCH "${GDCM_VERSION_BUILD}")
  SET(CPACK_PACKAGE_INSTALL_DIRECTORY "gdcm ${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}")
  SET(CPACK_SOURCE_PACKAGE_FILE_NAME "gdcm-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
  # List executables
  INCLUDE(CPack)
ENDIF(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake")
 
INCLUDE(UseDebian)
IF(DEBIAN_FOUND)
  ADD_DEBIAN_TARGETS(GDCM)
ENDIF(DEBIAN_FOUND)
</pre>
 
This CMake macro was inspired from UseRPMTools.
 
==Debian==
 
To inspect your deb file:
<pre>
$ dpkg-deb -c gdcm_1.2.0-1_i386.deb
 
$ dpkg-deb -f gdcm_1.2.0-1_i386.deb
 
tar: Read 8192 bytes from -
Package: gdcm
Version: 1.2.0
Section: devel
Priority: optional
Architecture: i386
Depends: libc6 (>= 2.3.1-6), libgcc1 (>= 1:3.4.2-12)
Maintainer:
Description: Grass Root DiCoM
  .
  gdcm was packaged by UseDebian and CMake.
  .
</pre>
 
== Errors ==
 
If you are getting a:
 
<pre>
"CMake Error: Md5sum_DIR is not set.  It must be set to the directory containing Md5sumConfig.cmake in order to use Md5sum."
</pre>
 
This is mostly beause you did:
 
<pre>
include(../CMake/UseDebian.cmake)
</pre>
 
instead of setting the <tt>CMAKE_MODULE_PATH</tt>. Indeed the UseDebian.cmake rely on another cmake script: FindMd5sum.cmake which need to be found by cmake !
 
== Derived work ==
 
Mehdi Rabah (at INRIA) reworked the cmake debian module:
 
*http://mehdi.rabah.free.fr/DpkgDeb.cmake
*http://mehdi.rabah.free.fr/Rpmbuild.cmake
* example : http://mehdi.rabah.free.fr/CMakeLists.txt
 
== Reference ==
 
* http://public.kitware.com/pipermail/cmake/2007-April/013650.html
* http://gdcm.svn.sourceforge.net/viewvc/gdcm/CMake/
* http://cvs.savannah.gnu.org/viewvc/tsp/tsp/make/
 
[[CMake_User_Contributed_Macros|Back]]
 
{{CMake/Template/Footer}}

Latest revision as of 15:41, 30 April 2018


The CMake community Wiki has moved to the Kitware GitLab Instance.

This page has moved here.