Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dlove24/tw-libyaml
TapeWorm embedded YAML parser/emitter from the LibYAML project
https://github.com/dlove24/tw-libyaml
Last synced: 10 days ago
JSON representation
TapeWorm embedded YAML parser/emitter from the LibYAML project
- Host: GitHub
- URL: https://github.com/dlove24/tw-libyaml
- Owner: dlove24
- License: mit
- Created: 2011-06-09T12:38:42.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-06-16T11:28:50.000Z (over 13 years ago)
- Last Synced: 2023-03-12T07:57:08.668Z (over 1 year ago)
- Language: C
- Homepage: http://pyyaml.org/wiki/LibYAML
- Size: 229 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE
Awesome Lists containing this project
README
= TapeWorm Fork of the libYAML Library by Kirill Simonov
This repository is, essentially, the same as the upstream C libYAML
library, hosted at http://pyyaml.org/wiki/LibYAML. The intention is
to keep this library as close as possible to the upstream version,
adding tweaks only where needed by TapeWorm. Most of these tweaks
improve the portability of certain files, by integrating into the CMake
based build system of Tapeworm.Our version of the C YAML library is not intended as a stand-alone
library (unlike the excellent foundations). If you want a stand-alone
version go to the original source. This version exists principally to
make it easier to re-use the work done on libYAML within Tapeworm.== Original README
LibYAML - A C library for parsing and emitting YAML.
To build and install the library, run:
$ ./configure
$ make
# make installIf you checked the source code from the Subversion repository, run
$ ./bootstrap
$ ./configure
$ make
# make installFor more information, check the LibYAML homepage:
'http://pyyaml.org/wiki/LibYAML'.Post your questions and opinions to the YAML-Core mailing list:
'http://lists.sourceforge.net/lists/listinfo/yaml-core'.Submit bug reports and feature requests to the LibYAML bug tracker:
'http://pyyaml.org/newticket?component=libyaml'.LibYAML is written by Kirill Simonov . It is released
under the MIT license. See the file LICENSE for more details.This project is developed for Python Software Foundation as a part of
Google Summer of Code under the mentorship of Clark Evans.== Updating
Updates to this library should be pulled from the upstream libYAML
Subversion repository. With `git-svn` you should be able to dogit-svn fetch
to get the latest version of the upstream code. You may need to do
git-svn init http://svn.pyyaml.org/libyaml/branches/stable
if Git has forgotten where the repository is.
== Copyright
Copyright (c) 2006-2011, Kirill Simonov
Copyright (c) 2011 David Love.See LICENSE for further details.