0

I'm building a simple single binary deb package, everything works fine with the executable that is placed in the usr/bin folder and executes when I click the desktop icon. Now I want to start programming the functionalities, so I write the bash scripts and normaly the packagebuilder add's them to the usr/lib folder after adding them to the debian/install file.

But my deb package has no usr/lib folder after installation, I can add them to the usr/bin folder, but lintian requires a manpage for every file in the bin folder so that's not really an option.

How do I get the usr/lib folder? Lintian never complains when the package is beeing build so I dont know where I should put this.

Regards Gijs

Gijs
  • 125

1 Answers1

0

Installation directories should be defined in the debian/[applicationname].install file. Check if you set the correct path (/usr/lib) for your scripts and it should work.

Jacob Vlijm
  • 85,475