View Single Post
Posts: 299 | Thanked: 241 times | Joined on Oct 2009 @ Singapore
#195
Hi,

I'm having a problem when installing my Qt app built and packaged with MADDE with a dependency to Phonon. I saw this post with the following solution.

Originally Posted by too View Post
Edit to debian/control file, and append the package requirement to the Depends: line, like:

Depends: libqt4-phonon (>= 4.5)
I've tried it, but it doesn't solve my problem.
My debian/control file now looks like this:

Code:
Depends: libqt4-phonon (>= 4.5), ${shlibs:Depends}, ${misc:Depends}
I'm not sure if I really need the last two, but they were there for some reason and I don't dare remove them.

I've also tried without the (>= 4.5) but the result is the same.

The message I get when I click the .deb file on the device is:

Code:
Application details
  Problems
    Application packages missing: libqt4-phonon (>= 4.5.3~git20090723)
I understand that I could install the package manually, but that's not very 'user friendly' for non-developers.

Thanks for any pointers!