Installing gLabels from Source
The following outlines how to install glabels from source on various GNU/Linux distributions.
Prerequisites
Dependencies will need to be installed as root. Although dependecies can be installed using your distribution's graphical package manager, the directions below use command line tools because it is easier to convey.
Fedora and similar distributions
$ su
Password:
# yum groupinstall "Development Tools"
# yum groupinstall "GNOME Software Development"
Ubuntu and similar distributions
$ sudo apt-get install libgtk2.0-dev libgnomeui-dev libxml2-dev libglade2-dev
$ sudo apt-get install libebook1.2-dev (optional)
The exact dependencies and their names may vary with different distributions and versions. There may also be additional dependencies depending on the baseline configuation of your distribution. If ./configure in the following step complains, you may need to return to this step and install additional dependencies.
Unpack and Build
This step should not vary with distribution.
$ tar xvfz glabels-2.2.x.tar.gz
$ cd glabels-2.2.x
$ ./configure
$ make
Install
Installation will need to be done as root.
Fedora and similar distributions
$ su
Password:
# make install
Ubuntu and similar distributions
$ sudo make install