mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
+linux-headers
This commit is contained in:
parent
2dfa90044d
commit
ffbc03970a
28
projects/kernel.org/linux-headers/package.yml
Normal file
28
projects/kernel.org/linux-headers/package.yml
Normal file
|
@ -0,0 +1,28 @@
|
|||
distributable:
|
||||
url: https://cdn.kernel.org/pub/linux/kernel/v{{version.major}}.x/linux-{{version}}.tar.xz
|
||||
strip-components: 1
|
||||
|
||||
versions:
|
||||
# FIXME: source for _all_ mainline versions
|
||||
url: "https://cdn.kernel.org/pub/linux/kernel/v5.x/"
|
||||
match: /linux-\d+\.\d+\.\d+\.tar\.xz/
|
||||
strip:
|
||||
- /linux-/
|
||||
- /\.tar\.xz/
|
||||
|
||||
platforms: linux
|
||||
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
tea.xyz/gx/make: '*'
|
||||
gnu.org/sed: '*'
|
||||
script: |
|
||||
make headers
|
||||
mkdir -p "{{prefix}}"
|
||||
cp -a usr/include "{{prefix}}/"
|
||||
|
||||
test: |
|
||||
grep "LINUX_VERSION_MAJOR {{version.major}}" "{{prefix}}/include/linux/version.h"
|
||||
grep "LINUX_VERSION_PATCHLEVEL {{version.minor}}" "{{prefix}}/include/linux/version.h"
|
||||
grep "LINUX_VERSION_SUBLEVEL {{version.patch}}" "{{prefix}}/include/linux/version.h"
|
Loading…
Reference in a new issue