Metadata-Version: 2.4
Name: iksemel
Version: 1.6.2
Summary: This is an XML parser library mainly designed for Jabber applications.
Author-email: Suleyman Poyraz <zaryob.dev@gmail.com>
Project-URL: Homepage, https://github.com/Zaryob/iksemel
Project-URL: Bug Tracker, https://github.com/Zaryob/iksemel/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: COPYING
License-File: AUTHORS
Dynamic: license-file

[![Issues](https://img.shields.io/github/issues-raw/Zaryob/iksemel?style=for-the-badge)](https://github.com/Zaryob/iksemel/issues) [![PullRequests](https://img.shields.io/github/issues-pr-raw/Zaryob/iksemel?style=for-the-badge)](https://github.com/Zaryob/iksemel/pulls)

[![Travis Status](https://travis-ci.org/Zaryob/iksemel.svg?branch=master)](https://travis-ci.org/Zaryob/iksemel) ![Language](https://img.shields.io/badge/language-c-blue.svg) ![License](https://img.shields.io/badge/license-LGPL2-purple.svg) [![Document](https://img.shields.io/badge/document-gh--pages-blue)](https://zaryob.github.io/iksemels)

                      iksemel 1.6.2

            http://code.google.com/p/iksemel

      Owner:
      Copyright (c) 2000-2011 Gurer Ozen <meduketto at gmail.com>

      Changes and maintenance:
      Copyright (c) 2016-2024 Suleyman Poyraz <zaryob.dev at gmail.com>

Introduction:
-------------

This is an XML parser library mainly designed for Jabber applications.
It provides SAX, DOM, and special Jabber stream APIs. Library is coded
in ANSI C except the network code (which is POSIX compatible), thus
highly portable. Iksemel is released under GNU Lesser General Public
License. A copy of the license is included in the COPYING file.


Requirements:
-------------

Meson and Ninja packages are required for compiling cvs versions.

TLS support requires OpenSSL (>1.1.0) or GNUTLS (>2.0.0) library.

Python bindings requires Python (>3.3).


Compiling & Install:
--------------------

If you got the source from CVS, type
```bash
  meson build
```
for creating configuration script and files.

Then type
```bash
  ninja -C build
```
now library is compiled. You can test it with
```bash
  ninja test -C build
```
and install it with

  (become root if necessary)
```bash
  ninja install -C build
```

Parameters
----------

* **openssl**: [enabled,disabled] OpenSSL support. (Conflicts with GNUTLS)
* **gnutls**: [enabled,disabled] GNUTLS support. (Conflicts with OpenSSL)
* **with_tools**: [true,false] Enable Tools (hash, ikslint, iksperf, iksroster)
* **with_python**: [true,false] Enable Python support.
