How do I install a package on OSX without recompiling everything?
I just installed ROS Hydro on OS X Mavericks, and I'm looking to install additional packages that weren't included in the full install.
I can't simply get the binaries (they're not on homebrew) so I need to go the manual route. My plan was to do this:
rosrlocate info PACKAGE | rosws merge -
rosws update
mv PACKAGE src/PACKAGE
rosdep install PACKAGE
catkin_make_isolated
Except when I do catkin_make_isolated
, I recompile all the source files from the installation. Do I need to create a new rosws and install packages there? Is my ros_catkin_ws from the OS X install now more-or-less equivalent to /opt/ros/hydro, in that I shouldn't touch it but I should keep it on my ROS paths?
I wanted to get an idea of the standards before mucking about!