#!/bin/sh

MAKEDEPS="make cpio bc perl libelf kmod xmlto xz"
DEPS="pahole"

PKG_VER=5.16.11
SOURCE=https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-$PKG_VER.tar.xz
DESC="Linux kernel headers"


build () {
    make mrproper
    make headers
    find usr/include -name '.*' -delete
    rm usr/include/Makefile
}

package () {
    mkdir -pv $PKG_DEST/usr/include
    cp -rv usr/include/* $PKG_DEST/usr/include/
}