The libpsl package provides a library for accessing and resolving information from the Public Suffix List (PSL). The PSL is a set of domain names beyond the standard suffixes, such as .com.
Section 9.13, “libidn2-2.3.8” and Section 9.12, “libunistring-1.4.1”
Prepare libpsl by running the following commands:
meson setup build --prefix=/usr --buildtype=release
Compile the package:
ninja -C build
To test the results, issue:
ninja -C build test
Install the package:
ninja -C build install
--buildtype=release:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.