Create .deb package for a Qt project

c++, debian, packaging, qt, ubuntu

Solution

Your best bet is to get one of these packages already using qmake with `apt-get source` and `apt-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.

Problem

Is there some sort of an automated way of creating .deb packages from a project.pro file? I tried ubucompilator without much luck. Thanks!

Original source