Cannot find package sns_ik_lib for Melodic
I'm adopting to Ubuntu 18 and Melodic ROS distro installation script, made for Ubuntu 16 and Kinetic. Two packages I did not find for Melodic, existing for Kinect: ros-kinetic-qt-build ros-kinetic-sns-ik-lib
There is GitHub Melodic branch for sns_ir https://github.com/RethinkRobotics-op...
In [ros-workspace]/build/CMakeCache.txt this path was marked as "NOT_FOUND" - I fixed it manually (just for testing)
//The directory containing a CMake configuration file for sns_ik_lib.
sns_ik_lib_DIR:PATH=/opt/ros/melodic/share/sns_ik_lib/cmake
This is what I did for fix (I'm not proficient with C++ and ROS):
git clone https://github.com/RethinkRobotics-opensource/sns_ik.git
cd sns_ik\snk_ik_lib && mkdir build && cd build && cmake -DUSEWX=yes -DCMAKE_BUILD_TYPE=Release .. && make -j4
sudo cp -r devel/share/sns_ik_lib /opt/ros/melodic/share
sudo cp ../package.xml /opt/ros/melodic/share/snk_ik_lib/
After this catkin_make builds fine. I'm not sure about ros-kinetic-qt-build for Melodic.
Any suggestions how to fix this properly?