libpsyc/README.org

105 lines
3.5 KiB
Org Mode
Raw Permalink Normal View History

2011-06-12 10:40:08 +00:00
#+TITLE: libpsyc README file
#+OPTIONS: toc:nil num:nil
* About
libpsyc implements various functions required to use PSYC.
2011-06-12 11:05:17 +00:00
- See [[http://about.psyc.eu/libpsyc]] for more information on the library.
- See [[http://lib.psyc.eu/doc/]] for the API documentation.
2011-08-22 21:29:14 +00:00
- See [[http://about.psyc.eu/Specification]] for more information
on the new PSYC specification.
2011-06-12 11:05:17 +00:00
- See [[http://about.psyc.eu/]] for information on PSYC in general.
2011-06-12 10:40:08 +00:00
2011-08-22 21:29:14 +00:00
The plain C API located in the include/psyc directory along with the file
psyc.h is primarily intended to be used for binding with other languages
and frameworks.
2011-06-12 10:40:08 +00:00
The LPC binding for psyced is distributed with psyclpc since it is spread
over several files (LPC has no simple approach to binding). Other bindings
are located directly in the root folder named according to the language or
framework. Currently there's only a binding for D.
* C API
The "plain C API" is a very low-level API intended to be used for bindings.
To access a certain module of the library, just include the according header
file from the psyc directory:
: #include <psyc.h> // basic things for well-being
: #include <psyc/parse.h> // parse psyc packets
: #include <psyc/render.h> // render psyc packets
: #include <psyc/text.h> // text template functions
: #include <psyc/packet.h> // structures for render.h and functions to initialize them
: #include <psyc/syntax.h> // definitions and constants related to parsing and rendering
For more information see the API documentation at [[http://lib.psyc.eu/doc/]].
* Directory Overview
: doc/ # target folder for the documentation after generation (make doc)
: include/ # the core C API for the library
: lib/ # target folder for the compiled library (make)
: src/ # the sourcecode of the library
: test/ # test sourcecodes and test input files
: d/ # the D binding
2011-06-12 10:40:08 +00:00
* Compiling libpsyc
2013-09-04 13:54:18 +00:00
On GNU systems, type
2011-06-12 10:40:08 +00:00
: make
2013-09-04 13:54:18 +00:00
On other systems install GNU make, then type
: gmake
2011-06-12 10:40:08 +00:00
and you are done.
Other possible targets include:
: make install [prefix=/usr] # install into prefix
: make diet # compile with diet libc
: make test # compile and run the tests
: make doc # generate the API documentation (will be put in the doc folder)
: make help # display the possible targets
* Requirements
libpsyc is currently known to compile under Linux and SunOS.
2011-06-12 10:40:08 +00:00
* Contact
If you created new bindings, patches or anything other that you think should go
into the library, contact either anyone of us directly or just join the
2013-06-23 19:20:49 +00:00
development room at
2011-06-12 10:40:08 +00:00
- psyc://psyced.org/@welcome
- irc://psyced.org/welcome
2011-08-22 21:29:14 +00:00
- xmpp:*welcome@psyced.org
2011-06-12 10:40:08 +00:00
2013-06-23 19:20:49 +00:00
* Authors
This library is being developed by:
- Carlo v. Loesch / lynX <psyc://psyced.org/~lynX>
- Gabor X Toth / tg(x) <tg-x.net> <psyc://psyced.org/~tg>
- Mathias L. Baumann / Marenz <psyc://supraverse.net/~marenz>
2011-06-12 10:40:08 +00:00
* License
2013-06-23 19:20:49 +00:00
Unless indicated otherwise, all libpsyc source files use the AGPL with
additional permissions to link libpsyc libraries with non-AGPL works; the full
text of the license is located in the [[./COPYING][COPYING]] file with the linking exception at
the end.
2011-06-12 10:40:08 +00:00
* Style Wars
2011-06-12 11:08:24 +00:00
This source code should follow the [[http://about.psyc.eu/Indent]] conventions.
2011-06-12 10:40:08 +00:00
(if you have good reasons to use another style, discuss it on the
wiki page so that it becomes the general style convention for all
of us, not just for you).
* Disclaimer
The https://github.com/psyc/libpsyc repository only serves promotional
purposes. It may be outdated and we do not recommend participating in a
centralistic social networking business.