mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
|
|
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
|
|
source ../linux.conf
|
|
|
|
pkgname=linux-api-headers
|
|
pkgver=$_kernelver
|
|
pkgrel=1
|
|
pkgdesc="Kernel headers sanitized for use in userspace"
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/libc"
|
|
license=('GPL2')
|
|
source=(http://www.kernel.org/pub/linux/kernel/v4.x/linux-${_basekernel}.tar.xz
|
|
http://www.kernel.org/pub/linux/kernel/v4.x/linux-${_basekernel}.tar.sign
|
|
http://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.xz
|
|
http://www.kernel.org/pub/linux/kernel/v4.x/patch-${pkgver}.sign)
|
|
sha256sums=('f81d59477e90a130857ce18dc02f4fbe5725854911db1e7ba770c7cd350f96a7'
|
|
'SKIP'
|
|
'54a6359ed333e619db8c5c88020ff20f1e25635337f01f50a7488ec2fc0fe030'
|
|
'SKIP')
|
|
validpgpkeys=('ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds
|
|
'647F28654894E3BD457199BE38DBBDC86092693E') # Greg Kroah-Hartman
|
|
|
|
prepare() {
|
|
cd ${srcdir}/linux-${_basekernel}
|
|
[[ $pkgver != $_basekernel ]] && patch -p1 -i ${srcdir}/patch-${pkgver} || true
|
|
}
|
|
|
|
build() {
|
|
cd ${srcdir}/linux-${_basekernel}
|
|
|
|
make mrproper
|
|
make headers_check
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/linux-${_basekernel}
|
|
make INSTALL_HDR_PATH=${pkgdir}/usr headers_install
|
|
|
|
# use headers from libdrm
|
|
rm -r ${pkgdir}/usr/include/drm
|
|
|
|
# clean-up unnecessary files generated during install
|
|
find ${pkgdir} \( -name .install -o -name ..install.cmd \) -delete
|
|
}
|