### Build and Install librseq Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/README.md Standard commands to configure, build, and install the librseq library. Ensure to run `sudo ldconfig` after installation to update the shared library cache. ```bash ./configure make sudo make install sudo ldconfig ``` -------------------------------- ### Configure librseq Installation Prefix Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/README.md Use the `--prefix` switch with `./configure` to specify a custom installation directory, for example, `/usr`. ```bash ./configure --prefix=/usr ``` -------------------------------- ### Build librseq Against Local Kernel Headers Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/README.md Steps to build librseq when using local kernel headers. This involves installing kernel headers and then configuring librseq with the correct include path. ```bash cd /path/to/kernel/sources make headers_install cd /path/to/librseq CPPFLAGS=-I/path/to/kernel/sources/usr/include ./configure make sudo make install sudo ldconfig ``` -------------------------------- ### Bootstrap librseq Build Environment Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/README.md Run this command if you obtained the librseq source tree from the Git repository to prepare the tree for configuration. ```bash ./bootstrap ``` -------------------------------- ### Run librseq Test Suite Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/README.md Execute the test suite after a successful build to verify the library's integrity. The default tests can be overridden using the `TESTS` variable. ```bash make check ``` -------------------------------- ### SPDX License Identifier for GPL-3.0-or-later Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/LICENSES/GPL-3.0-or-later.txt Use this SPDX tag/value pair in a comment to indicate that the software is licensed under GPL version 3 or any subsequent versions. ```text SPDX-License-Identifier: GPL-3.0-or-later ``` -------------------------------- ### SPDX License Identifier for GPL-3.0-only Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/LICENSES/GPL-3.0-or-later.txt Use this SPDX tag/value pair in a comment to indicate that the software is licensed strictly under GPL version 3. ```text SPDX-License-Identifier: GPL-3.0-only ``` -------------------------------- ### Run Specific Test in librseq Suite Source: https://github.com/pub/scm/libs/librseq/librseq/blob/master/README.md Override the default test list to run only a specific test, such as `run_unregistered_test.tap`, by setting the `TESTS` variable. ```bash make check TESTS="run_unregistered_test.tap" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.