mirror of
https://github.com/facebook/zstd.git
synced 2025-10-04 00:02:33 -04:00
The pkg-config file has License variable that allows you to set the license for the software. This sets 'BSD-3-Clause OR GPL-2.0-only' to License. Ref: https://github.com/pkgconf/pkgconf/blob/master/man/pc.5#L116 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18 lines
517 B
PkgConfig
18 lines
517 B
PkgConfig
# ZSTD - standard compression algorithm
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)
|
|
|
|
prefix=@PREFIX@
|
|
exec_prefix=@EXEC_PREFIX@
|
|
includedir=@INCLUDEDIR@
|
|
libdir=@LIBDIR@
|
|
|
|
Name: zstd
|
|
Description: fast lossless compression algorithm library
|
|
URL: https://facebook.github.io/zstd/
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -lzstd @LIBS_MT@
|
|
Libs.private: @LIBS_PRIVATE@
|
|
Cflags: -I${includedir} @LIBS_MT@
|
|
License: BSD-3-Clause OR GPL-2.0-only
|