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.
22 lines
975 B
22 lines
975 B
package("linux-headers") |
|
|
|
set_homepage("https://kernel.org/") |
|
set_description("Header files 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") |
|
|
|
on_install("@linux", function (package) |
|
os.vrunv("make", {"headers_install", "INSTALL_HDR_PATH=" .. package:installdir()}) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cincludes("linux/version.h")) |
|
end)
|
|
|