xml2xsd is a command line tool that reads xml files and generate an xsd schema validating them.
Once the xsd schema is created, using Xml2cpp, it is then possible to generate c++ classes that fit with the given xml files.
This package depends on xml2cpp for its libdata_xs (classes generated from the schema xsd.xsd).
It also needs saxmagique, expat and boost.
To compile xml2xsd choose one configuration:
$ mkdir build_debug
$ cd build_debug
$ cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/opt/Debug ..
$ make -j4
$ make install
$ mkdir build_release
$ cd build_release
$ cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/opt/Release ..
$ make -j4
$ make install