Is there some sort of an automated way of creating .deb packages from a project.pro file? I tried ubucompilator without much luck. Thanks!
+3
A:
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.
Tobu
2010-01-12 12:19:48
apt-get source <package> returns an error for all of the packages in the list. It says 'unable to find a source package'
Honza Pokorny
2010-01-12 12:36:22
Enable the source repos? You can edit /etc/apt/sources.list to add `deb-src` lines to match the `deb` lines, or use `sudo software-properties-gtk` .
Tobu
2010-01-12 12:54:35
(followed by `sudo apt-get update`)
Tobu
2010-01-12 14:55:02