1*bb75b0d5SLexi Winter/* 2*bb75b0d5SLexi Winter * SPDX-License-Identifier: ISC 3*bb75b0d5SLexi Winter * 4*bb75b0d5SLexi Winter * Copyright (c) 2026 Pierre Pronchery <khorben@FreeBSD.org> 5*bb75b0d5SLexi Winter * 6*bb75b0d5SLexi Winter * Permission to use, copy, modify, and distribute this software for any 7*bb75b0d5SLexi Winter * purpose with or without fee is hereby granted, provided that the above 8*bb75b0d5SLexi Winter * copyright notice and this permission notice appear in all copies. 9*bb75b0d5SLexi Winter * 10*bb75b0d5SLexi Winter * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11*bb75b0d5SLexi Winter * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12*bb75b0d5SLexi Winter * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13*bb75b0d5SLexi Winter * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14*bb75b0d5SLexi Winter * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15*bb75b0d5SLexi Winter * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16*bb75b0d5SLexi Winter * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17*bb75b0d5SLexi Winter * 18*bb75b0d5SLexi Winter */ 19*bb75b0d5SLexi Winter 20*bb75b0d5SLexi Wintercomment = "Package compiler and linker metadata toolkit" 21*bb75b0d5SLexi Winter 22*bb75b0d5SLexi Winterdesc = <<EOD 23*bb75b0d5SLexi Winterpkgconf(1) is a program which helps to configure compiler and linker flags for 24*bb75b0d5SLexi Winterdevelopment libraries. It is a superset of the functionality provided by 25*bb75b0d5SLexi Winterpkg-config from freedesktop.org, but does not provide bug-compatibility with 26*bb75b0d5SLexi Winterthe original pkg-config. 27*bb75b0d5SLexi Winter 28*bb75b0d5SLexi WinterAlso provided is bomtool(1), a program which generates a textual SPDX 2.0 29*bb75b0d5SLexi Wintersoftware bill of materials (SBOM) for a given set of pkg-config modules. The 30*bb75b0d5SLexi Winteroutput of this tool can then be translated into other SBOM formats as 31*bb75b0d5SLexi Winternecessary. 32*bb75b0d5SLexi WinterEOD 33