summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-06-09 23:55:40 +0800
committerruki <[email protected]>2024-06-09 23:55:40 +0800
commitf0457bac853a7bfbeedf53995a36d60912f7595e (patch)
tree16c762018a6241194894b79921560f6c1164865d
parentc0ce25f5eaf880310fb7446a01b1ed76779b0c0d (diff)
add find_debuild
-rw-r--r--xmake/modules/detect/tools/find_debuild.lua46
1 files changed, 46 insertions, 0 deletions
diff --git a/xmake/modules/detect/tools/find_debuild.lua b/xmake/modules/detect/tools/find_debuild.lua
new file mode 100644
index 000000000..97d700969
--- /dev/null
+++ b/xmake/modules/detect/tools/find_debuild.lua
@@ -0,0 +1,46 @@
+--!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 find_debuild.lua
+--
+
+-- imports
+import("lib.detect.find_program")
+import("lib.detect.find_programver")
+
+-- find debuild
+--
+-- @param opt the argument options, e.g. {version = true}
+--
+-- @return program, version
+--
+-- @code
+--
+-- local debuild = find_debuild()
+-- local debuild, version = find_debuild({version = true})
+--
+-- @endcode
+--
+function main(opt)
+ opt = opt or {}
+ local program = find_program(opt.program or "debuild", opt)
+ local version = nil
+ if program and opt and opt.version then
+ version = find_programver(program, opt)
+ end
+ return program, version
+end