summaryrefslogtreecommitdiff
path: root/xmake/actions/package/remote
diff options
context:
space:
mode:
authorruki <[email protected]>2021-06-02 23:10:41 +0800
committerruki <[email protected]>2021-06-02 23:10:41 +0800
commit50a79cc6fcece9b826d60ccd54998176df5db43e (patch)
treea8402d899cba19b2597c1601bd6e8543d60b4316 /xmake/actions/package/remote
parentb3027461160d7e0462b8cfff417fa442444f0420 (diff)
improve package content
Diffstat (limited to 'xmake/actions/package/remote')
-rw-r--r--xmake/actions/package/remote/main.lua25
1 files changed, 15 insertions, 10 deletions
diff --git a/xmake/actions/package/remote/main.lua b/xmake/actions/package/remote/main.lua
index 917d89226..3d46d10ba 100644
--- a/xmake/actions/package/remote/main.lua
+++ b/xmake/actions/package/remote/main.lua
@@ -45,13 +45,22 @@ function _package_remote(target)
for _, dep in ipairs(target:orderdeps()) do
table.insert(deps, dep:name())
end
- file:print([[package("%s")
- %s
- set_description("%s")
-
+ file:print("package(\"%s\")", packagename)
+ if target:is_binary() then
+ file:print(" set_kind(\"binary\")")
+ end
+ file:print(" set_description(\"%s\")", "The " .. packagename .. " package")
+ if target:license() then
+ file:print(" set_license(\"%s\")", target:license())
+ end
+ if #deps > 0 then
+ file:print(" set_deps(\"%s\")", table.concat(deps, "\", \""))
+ end
+ file:print("")
+ file:print([[
add_urls("https://github.com/myrepo/foo.git")
add_versions("%s", "<shasum256 or gitcommit>")
- %s
+
on_install(function (package)
local configs = {}
if package:config("shared") then
@@ -63,11 +72,7 @@ function _package_remote(target)
on_test(function (package)
-- TODO check includes and interfaces
-- assert(package:has_cfuncs("foo", {includes = "foo.h"})
- end)]], packagename,
- target:is_binary() and "set_kind(\"binary\")" or "",
- "The " .. packagename .. " package",
- target:version() and (target:version()) or "1.0",
- #deps > 0 and ("add_deps(\"" .. table.concat(deps, "\", \"") .. "\")") or "")
+ end)]], target:version() and (target:version()) or "1.0")
file:close()
end