The yaml package contains a C library for parsing and emitting YAML (YAML Ain't Markup Language) code.
Install libyaml by running the following commands:
./configure --prefix=/usr --disable-static && make
To test the results, issue: make check.
Now, as the root
user:
make install
--disable-static
: This
switch prevents installation of static versions of the libraries.