Can't install terminator on RHEL 5

Asked by sillielyd

I'm attempting to install terminator on RHEL 5. However I get the following error message:

error: can't copy 'data/terminator.desktop': doesn't exist or not a regular file

I'm attempting to install v terminator-0.94

As user root here's my output::
root @ [/tmp/terminator-0.94] # ./setup.py install --record=install-files.txt
running install
running build
running build_py
package init file 'terminatorlib/plugins/__init__.py' not found (or not a regular file)
package init file 'terminatorlib/plugins/__init__.py' not found (or not a regular file)
running build_scripts
sh: intltool-merge: command not found
running install_lib
running install_scripts
changing mode of /usr/bin/terminator to 755
running install_data
error: can't copy 'data/terminator.desktop': doesn't exist or not a regular file

Question information

Language:
English Edit question
Status:
Solved
For:
Terminator Edit question
Assignee:
No assignee Edit question
Solved by:
Chris Jones
Solved:
Last query:
Last reply:
Revision history for this message
Best Chris Jones (cmsj) said :
#1

The cause of the failure is this line of the output:

sh: intltool-merge: command not found

without that command (intltool-merge), the .desktop file cannot be constructed by setup.py. I'm not sure offhand which package that is in in RHEL, but it should be available.

Revision history for this message
sillielyd (lforbes) said :
#2

Thanks for the update Chris. I installed intltool and that did the trick. Thanks again!!