View on GitHub

s1kd-tools

A set of small, free and open source software tools for manipulating S1000D data.

General

There are multiple ways to install the s1kd-tools:

Using a package manager

Debian (.deb) and Red Hat (.rpm) packages are provided to easily install, upgrade or uninstall the s1kd-tools on Linux systems using a package manager. The examples below focus on the standard dpkg (for Debian-based distributions) and rpm (for Red Hat-based distributions).

Installing

You can download the latest release of the s1kd-tools from http://khzae.net/1/s1000d/s1kd-tools/releases/latest. Then use one of the following commands to install it:

Debian:

# dpkg -i s1kd-tools_[version]_[arch].deb

Red Hat:

# rpm -i s1kd-tools.[version].[arch].rpm

Uninstalling

To uninstall using the package manager, use one of the following commands:

Debian:

# dpkg -r s1kd-tools

Red Hat:

# rpm -e s1kd-tools

Building from source

Requirements

To build the executables:

To build the documentation from source:

Windows build environment

To build the executables on Windows, an environment such as MinGW or Cygwin is recommended. These provide POSIX-compatible tools, such as make, that allow the s1kd-tools to be built and installed on a Windows system in the same way as on a Linux system.

Cygwin

To build the executables on Cygwin, you will need the following packages from the package installer:

MSYS2 MINGW64

Prior to building the executables on MSYS2 MINGW64, run the following to install the necessary packages from pacman:

pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-make mingw-w64-x86_64-pkgconf mingw-w64-x86_64-libxml2 mingw-w64-x86_64-libxslt mingw-w64-x86_64-libsystre vim

Building and installing

Run the following commands to build the executables, and install both the executables and documentation:

$ make
# make install

Uninstalling

To uninstall the executables and documentation:

# make uninstall

Additional Makefile parameters

The following parameters can be given to make to control certain options when building and installing.

PREFIX

The PREFIX variable determines where the s1kd-tools are installed when running make install, and where they are uninstalled from when running make uninstall. The default value is /usr/local.

Example:

# make PREFIX=/usr install

# make PREFIX=/usr uninstall

XPATH2_ENGINE

The XPATH2_ENGINE variable determines which XPath 2.0 implementation the s1kd-brexcheck tool will use to evaluate the object paths of BREX rules.

The s1kd-tools are built on libxml, so by default s1kd-brexcheck uses libxml’s XPath implementation. However, libxml only supports XPath 1.0. While as of Issue 5.0, the S1000D default BREX rules are all compatible with XPath 1.0, Issue 4.0 and up do reference the XPath 2.0 specification. Therefore, if your project needs XPath 2.0 support for BREX rules, you should select one of these implementations:

Example:

$ make XPATH2_ENGINE=XQILLA