I have downloaded a static built of a linux program (ffmpeg) I want to use in my Ubuntu 14.04
I just copy the executable (ffmpeg) into /usr/local/bin and the program works. I have been doing so for long now with this program. The author of the static built updates it very often.
But I have no man pages. Inside the directory where the static built comes, there is a directory called manpages. I think I might copy the files inside that directory (or the directory itself) to some location in my hard drive and from that moment I would be able to type in a console: man ffmpeg
Where should I put those files?
Remark: I don't want to delve into the complexities of compiling the program on my own (gathering information about the components I should include in the compilation, etc) and I don't want to use the fork (avconv) of ffmpeg that unluckily comes with my ubuntu because of the multiple bugs I have experience with it, and because of its lack of some ffmpeg features (video de-shaking!). Thanks.