我有一个使用 cmake 的上游源包,我想将它打包为两个二进制 debian 包。
$ tree proj
proj/
├── app1.c
├── app2.c
└── CMakeLists.txt
Upstream 的CMakeLists.txt
写作已经考虑到了这一点。他们使用 COMPONENTS 参数install
$ cat proj/CMakeLists.txt
include(GnuInstallDirs)
add_executable(app1 app1.c)
install(
TARGETS app1
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT app1)
add_executable(app2 app2.c)
install(
TARGETS app2
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT app2)
要在本地编译/安装,非常简单:
$ mkdir build && cd build
$ cmake ../proj -DCMAKE_INSTALL_PREFIX=/usr/local # Configure
$ cmake --build . # Build
$ cmake -DCOMPONENT=app1 -P cmake_install.cmake # Install app1 component
$ cmake -DCOMPONENT=app2 -P cmake_install.cmake # Install app2 component
但是您将如何为此构建debian/rules
文件?
一个标准的 debhelper
debain/rules
文件可能看起来像这样(buildsystem 会自动检测更新的兼容级别的 cmake)。这将有效地运行
make install DESTDIR=debian/tmp
。但这会将所有内容都放在一个目的地,需要您debian/*.install
手动编写文件以将其拆分(请参阅dh_install(1))。这是将单一的 cmake 源代码转换为多个二进制文件的正常方法,这里的 Debian 手册中有一个很好的指南。但是,上游通过定义 COMPONENT 安装为您完成了这项工作。
要利用这一点,请覆盖您自己的安装配方以指定包/组件关联:
debian/<binary_package_name>
表示/
该二进制包中的根。我对
sed
命令有点失望。我希望通过传递-- -DCOMPONENT=app1
给 dh_auto_install 目录来做到这一点。相反,这些命令编辑由 cmake 自动生成的 Makefile。此解决方案假定您正在使用make
,并且唯一的-P
字符串将出现在您的安装命令中(到目前为止我检查过的项目似乎就是这种情况)。我很高兴接受对此答案的编辑,并提供更好的解决方案。注意:Kitware(cmake 开发人员)正在开发一个新的 debhelper 扩展dh-cmake,它看起来会让这变得更加容易。但是,从 Debian 10 (buster) 开始,它还不可用。