I've generated a new Linux program executable with Lazarus. There's some additional stuff for my program (a folder with HTML Help, a readme.txt file and so on). In Windows, all things are located in e.g. C:\Programs\MyProgram. In Linux, the executable and the related other stuff is located in different locations. What is the common way to install? How can the executable find the related other files?
I assume, there's a difference between programs which should be accessible in the terminal and programs which are executed via icon.
On my Ubuntu system, I have seen that lots of program executables are stored into
/usr/bin
and the related stuff is located in a folder which resides in
/usr/share
Is this a common behaviour in Linux? If yes, I could generate a zipfile for installation which holds /usr/bin/myprogram and /usr/bin/myprogram/*otherstuff.
Martin V.