Dependencies from a .deb file
Given just a .deb file, how do I get the list of dependencies?
You want to run:
$ dpkg --info <blah>.deb
This should (among other things) list the "depends" section of the package description.
$ dpkg -p <package_name>