为 Qt 项目创建 .deb 包
是否有某种从 project.pro 文件创建 .deb 包的自动化方法?我尝试了 ubucompilator,但运气不佳。谢谢!
Is there some sort of an automated way of creating .deb packages from a project.pro file? I tried ubucompilator without much luck. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你最好的选择是使用 已经使用 qmake 的软件包和 apt- 之一get source 和
apt-get build-dep
,最好是最简单的,复制其 debian/ 目录,并根据您的需要进行调整。 这里概述了 debian/ 下的文件的用途。Your best bet is to get one of these packages already using qmake with
apt-get source
andapt-get build-dep
, preferably the simplest, copy its debian/ directory, and tweak it to your needs. Here is an overview of what the files under debian/ are for.您还可以使用 CPack 它允许您生成 .deb 文件。如果您愿意改用 CMake,此过程会变得更容易。我相信有一些工具可以将 .pro 项目转换为 CMake 项目。
You could also use CPack which allows you to produce .deb files. If you are willing to switch to using CMake this process becomes easier. I believe there are tools that can convert a .pro project to a CMake project.