View Single Post
Posts: 432 | Thanked: 645 times | Joined on Mar 2009
#4
Originally Posted by Sasler View Post
So if I want to build a Debian package that anyone could install, what should I include to get the Qt Mobility working?

Cheers
Check the control file in your debian package, but it should be correct, as dpkg complains. But dpkg, doesn't grab the dependencies, you have to install them manually. If you have your application in a repository, like extras-devel for instance, it installs the dependencies automatically using apt. But in general you would need something like

Code:
Depends: libqtm-systeminfo
in your control file. But the more common way is, to let the debian helper do that for you. Usually the line looks like this in the debian folder next to your source code:

Code:
Depends: ${shlibs:Depends}, ${misc:Depends},
Daniel
 

The Following User Says Thank You to danielwilms For This Useful Post: