Zstandard is a real-time compression algorithm, providing high
compression ratios. It offers a very wide range of compression /
speed trade-offs, while being backed by a very fast decoder.
Approximate build time:
1.1 SBU
Required disk space:
59 MB
8.9.1. Installation of Zstd
Compile the package:
make
To test the results, issue:
make check
Install the package:
make prefix=/usr install
Remove the static library and move the shared library to
/lib
. Also, the .so
file in /usr/lib
will need to be recreated:
rm -v /usr/lib/libzstd.a
mv -v /usr/lib/libzstd.so.* /lib
ln -sfv ../../lib/$(readlink /usr/lib/libzstd.so) /usr/lib/libzstd.so