From 2d224dc7457fb6a6267f801c59546b981d6552fb Mon Sep 17 00:00:00 2001 From: Nobuhiro Iwamatsu Date: Mon, 28 Apr 2025 18:03:33 +0900 Subject: [PATCH] Add License variable to pkg-config file 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 --- lib/libzstd.pc.in | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libzstd.pc.in b/lib/libzstd.pc.in index d7b6c8582..2220a5797 100644 --- a/lib/libzstd.pc.in +++ b/lib/libzstd.pc.in @@ -14,3 +14,4 @@ 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