package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
package("linux-tools") |
|
|
|
set_kind("binary") |
|
set_homepage("https://kernel.org/") |
|
set_description("Tools of the Linux kernel") |
|
set_license("GPL-2.0-only") |
|
|
|
add_urls("https://cdn.kernel.org/pub/linux/kernel/$(version).tar.xz", |
|
"https://mirrors.edge.kernel.org/pub/linux/kernel/$(version).tar.xz", |
|
{version = function (version) |
|
return "v" .. version:major() .. ".x/linux-" .. version |
|
end}) |
|
add_versions("4.20.9", "b5de28fd594a01edacd06e53491ad0890293e5fbf98329346426cf6030ef1ea6") |
|
add_versions("5.0.8", "11908044e8cce1e093141f8da594708d45d05d0381676ae9aa3d8aeaf7c85435") |
|
add_versions("5.9.16", "b0d7abae88e5f91893627c645e680a95c818defd1b4fcaf3e2afb4b2b6b4ab86") |
|
|
|
add_configs("bpftool", { description = "Enable bpftool.", default = true, type = "boolean"}) |
|
|
|
local modules = {"bpftool"} |
|
|
|
on_load(function (package) |
|
for _, name in ipairs(modules) do |
|
if package:config(name) then |
|
import("modules." .. name).load(package) |
|
end |
|
end |
|
end) |
|
|
|
on_install("linux", function (package) |
|
for _, name in ipairs(modules) do |
|
if package:config(name) then |
|
local oldir = os.curdir() |
|
import("modules." .. name).install(package) |
|
os.cd(oldir) |
|
end |
|
end |
|
end) |
|
|
|
on_test(function (package) |
|
for _, name in ipairs(modules) do |
|
if package:config(name) then |
|
import("modules." .. name).test(package) |
|
end |
|
end |
|
end)
|
|
|