How do I build .deb for a ROS package?
As ROS calls its software modules "packages" this might be a bit confusing: This question is not about compiling a ROS package but rather building the .deb
archive (also called "package" in ubuntu/debian terminology).
We have found a bug in a ROS package and found a solution. Thus, we built the ROS package/stack via catkin and now need to deploy it. As the CMakeLists.txt of this particular ROS package (i.e., rqt) and even the entire stack does not contain CPack instructions there seems no simple way to get a ".deb" out of it.
What is the simplest way to get a ".deb" file for a ROS package that should utlimately replace the original ROS package? Or is there an alternative yet easy way to deploy our fix? (Note that our fix is not an official fix, thus official build farms are not an option.)
I should add that preferably I do not want to change the CMakeLists.txt of this ROS package.