1## LibYAML - A C library for parsing and emitting YAML. 2 3To build and install the library, run: 4 5 $ ./configure 6 $ make 7 # make install 8 9Required packages: 10 11- gcc 12- libtool 13- make 14 15If you checked the source code from the Git repository, run 16 17 $ ./bootstrap 18 $ ./configure 19 $ make 20 # make install 21 22Required packages: 23 24- autoconf 25- libtool 26- make 27 28For more information, check the [LibYAML 29homepage](https://github.com/yaml/libyaml). 30 31Discuss LibYAML with the maintainers in IRC #libyaml irc.freenode.net. 32 33You may also use the [YAML-Core mailing 34list](http://lists.sourceforge.net/lists/listinfo/yaml-core). 35 36Submit bug reports and feature requests to the [LibYAML bug 37tracker](https://github.com/yaml/libyaml/issues/new). 38 39This project was developed for Python Software Foundation as a part of Google 40Summer of Code under the mentorship of Clark Evans. 41 42The LibYAML module was written by Kirill Simonov <xi@resolvent.net>. 43It is currently maintained by the YAML community. 44 45LibYAML is released under the MIT license. 46See the file LICENSE for more details. 47