• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..10-Feb-2022-

config/H10-Feb-2022-16,45412,254

doc/H10-Feb-2022-1,8211,557

include/H10-Feb-2022-2,6681,187

src/H10-Feb-2022-11,6247,397

tests/H10-Feb-2022-5,1644,062

ChangesH A D10-Feb-202210.6 KiB373243

LicenseH A D10-Feb-20221.1 KiB2117

Makefile.amH A D10-Feb-20221.4 KiB5538

Makefile.inH A D10-Feb-202228.2 KiB905799

ReadMe.mdH A D10-Feb-20221.1 KiB4731

aclocal.m4H A D10-Feb-2022364.2 KiB10,2009,222

configureH A D10-Feb-2022428.3 KiB14,63512,205

configure.acH A D10-Feb-20222.2 KiB7461

yaml-0.1.pc.inH A D10-Feb-2022217 119

ReadMe.md

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