4

I would like to know if installed app will use wine server to run:

for e.g. picasa once installed -- it uses wine to run, however I want to know that picasa will use wine before installing it.

I've tried dpkg -I but doesn't show this particular info.

wisemonkey
  • 3,483

2 Answers2

3

Well, it it runs on wine it is an .exe

List the contents of a .deb with dpkg-deb

grep (search) for an .exe

dpkg-deb -c your.deb | grep exe

If you find a .exe , it runs on wine

Panther
  • 104,528
3

Well I knew it could be done but it took 10 minutes to work out:

dpkg-deb -f package.deb depends

Edit: This won't work for Picasa because it bundles its own copy of Wine. It's not a dependency. (And that's why the download is 30MB)

Oli
  • 299,380