I am new to Ubuntu. I am trying to install a program. The "readme.txt" file says:
to run program, write correct paths in the "program.sh" file (path to the library ".../program/lib/" and to the executable file ".../program/program").
and when I run program.sh
it says:
#!/bin/sh
KYLIX_BIN="/home/$USER/program/program/lib"
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH:$KYLIX_BIN
/home/$USER/program/program/program $1
...where the string program
is the name of the program I want to install.
Could you please help me to install the program?
$ ./program.sh
(where "$
" represents prompt in terminal, of course). – Dɑvïd Apr 18 '14 at 14:17