Hello Linux Geeksters. As you may know, FinalTerm is an inteligent terminal emulator, having some out of the box features, like: good command completion, good repositioning of text after window resizing, good desktop integration with Unity.
In this article I will show you how to install FinalTerm on Fedora 19, Fedora 18 and Fedora 17.
Because there is no repository for FinalTerm, we have to install it from sources. Follow these steps exactly for a successful installation:
1. Install the dependencies:
$ sudo yum install git cmake vala intltool libgee-devel gnome-common gtk-doc gtk3-devel libmx-devel clutter-gtk-devel libnotify-devel
2. Install Keybinder:
$ git clone https://github.com/engla/keybinder.git
$ cd keybinder/
$ git checkout keybinder-3.0
$ ./autogen.sh
$ make
$ sudo make install
$ sudo ldconfig
3. Add /usr/local/lib/pkgconfig to the PKG_CONFIG_PATH:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/
4. Install FinalTerm:
$ git clone https://github.com/p-e-w/finalterm.git
$ cd finalterm/
$ mkdir build
$ cd build/
$ cmake ..
$ make
$ sudo make install
Thanks for the tip. Everything went smoothly. Only problem is when try to launch FinalTerm have this error: error while loading shared libraries: libkeybinder-3.0.so.0: cannot open shared object file: No such file or directory
Any help will do! Thanks
ln -s /usr/local/lib/libkeybinder-3.0.so.0.0.0 /usr/lib64/libkeybinder-3.0.so.0