Debian Package Control file Question.
- by AJ
Hello,
I need to create a debian package for a java application.
In my package there a .jar file which is executable , a script which will run this jar file and a .so file for fmod.
I read the tutorial provided at http://tldp.org/HOWTO/html_single/Debian-Binary-Package-Building-HOWTO/
My question is in control file there is a Depends field which basically mentions the packages that need to installed in order to install my application. How do i find which packages are required for my application. I followed the instructions provided in the link for one of the .so and did
~/Desktop/PennTotalRecall/native/fmod/lib/linux64$ dpkg -S libfmodex64-4.28.09.so
dpkg: libfmodex64-4.28.09.so not found.
It gives above result.
Also my application requires java 1.5 to be installed in order for it to run.
How do I specify in my debian package.
Thanks,
AJ