summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-01-11 00:48:01 +0800
committerruki <[email protected]>2025-01-11 00:48:01 +0800
commit4bd329ef8184659bfbd221bf80efc5d7ee30e63f (patch)
tree62789ed4f865c3c2ca860ab7602af366b8150411
parente470863c24280ad3566d35b16ad184d3781510af (diff)
check pkgconfig
-rw-r--r--xmake/core/package/package.lua21
-rw-r--r--xmake/modules/lib/detect/check_pkgconfig.lua40
2 files changed, 61 insertions, 0 deletions
diff --git a/xmake/core/package/package.lua b/xmake/core/package/package.lua
index 741ca318c..a5d6283db 100644
--- a/xmake/core/package/package.lua
+++ b/xmake/core/package/package.lua
@@ -2712,6 +2712,27 @@ function _instance:check_fcsnippets(snippets, opt)
return sandbox_module.import("lib.detect.check_fcsnippets", {anonymous = true})(snippets, opt)
end
+-- check the given pkgconfig file?
+--
+-- @param name the .pc filename (without .pc extension)
+-- @param opt the argument options
+--
+-- @return true or false, errors
+--
+function _instance:check_pkgconfig(name, opt)
+ opt = opt or {}
+ if opt.configdirs == nil then
+ local configdirs = {}
+ local linkdirs = table.wrap(self:get("linkdirs") or "lib")
+ local installdir = self:installdir()
+ for _, linkdir in ipairs(linkdirs) do
+ table.insert(configdirs, path.join(installdir, linkdir))
+ end
+ opt.configdirs = configdirs
+ end
+ return sandbox_module.import("lib.detect.check_pkgconfig", {anonymous = true})(name or self:name(), opt)
+end
+
-- the current mode is belong to the given modes?
function package._api_is_mode(interp, ...)
return config.is_mode(...)
diff --git a/xmake/modules/lib/detect/check_pkgconfig.lua b/xmake/modules/lib/detect/check_pkgconfig.lua
new file mode 100644
index 000000000..97fdabe55
--- /dev/null
+++ b/xmake/modules/lib/detect/check_pkgconfig.lua
@@ -0,0 +1,40 @@
+--!A cross-platform build utility based on Lua
+--
+-- Licensed under the Apache License, Version 2.0 (the "License");
+-- you may not use this file except in compliance with the License.
+-- You may obtain a copy of the License at
+--
+-- http://www.apache.org/licenses/LICENSE-2.0
+--
+-- Unless required by applicable law or agreed to in writing, software
+-- distributed under the License is distributed on an "AS IS" BASIS,
+-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+-- See the License for the specific language governing permissions and
+-- limitations under the License.
+--
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
+--
+-- @author ruki
+-- @file check_pkgconfig.lua
+--
+
+-- imports
+import("core.base.option")
+import("lib.detect.pkgconfig")
+
+-- check the given pkgconfig file
+--
+-- @param name the .pc file name
+-- @param opt the argument options, e.g. { verbose = true, configdirs = {"lib"}}
+--
+function main(name, opt)
+ local result = pkgconfig.libinfo(name, opt)
+ if opt.verbose or option.get("verbose") or option.get("diagnosis") then
+ cprint("${dim}> checking for pkgconfig/%s.pc", name)
+ if result then
+ print(result)
+ end
+ end
+ return result
+end
+