2

I am attempting to create a Debian package of an application that includes a Java .jar file and some .so library files. This application comes from someone else; I am just converting it into a Debian package.

When I run pdebuild I get all the files included in the .deb package except the .so files. It appears that one of the build steps is filtering out those files.

How can I convince pdebuild to include those .so files?

Here is the command I am running:

pdebuild --pbuilder cowbuilder --buildresult .. \
         --debbuildopts '-Ibin.exe -izzz' -- \
         --basepath /var/cache/pbuilder/base-wheezy.cow \
         --distribution wheezy --configfile /etc/pbuilder/wheezy

The build system is wheezy while the package distribution target is wheezy as well.

RAM
  • 2,257
  • 2
  • 19
  • 41
rlandster
  • 7,294
  • 14
  • 58
  • 96

1 Answers1

0

You may either create debian/source/include-binaries file, listing all your *.so files. Or, use "--include-binaries" option, like described here

Community
  • 1
  • 1
Mih V An
  • 171
  • 1
  • 3