Linux systems are built on GNU utilities. Thus building on Linux is probably the easiest. Basically the steps are to unpack the sources, configure, build the libraries, and finally install the headers and binaries.
- Unpack the sources
tar -zxf lyric-src-release.tar.gz
This will create a directorylyric-src-release
- Enter the directory
cd lyric-src-release
- Configure the package
./configure
You can get help on additionalconfigureoptions (such as installation prefix) with./configure --help
- Build the libraries
make
- Install the header files and binaries
make install
If you are installing Lyric in a "system" directory such as/usror/usr/local, you'll probably have to become the super-user before installation withsuThe installation process will put the C++ header (include) files in
and the library binary files in
prefix/include/lyric
prefix/libMore detailed installation instructions are found in the documentation.