blob: 9f39bf5b032d2ae67dad86e63537fb770be8f42c (
plain) (
tree)
|
|
# Maintainer: Adelie Platform Group <adelie-devel@lists.adelielinux.org>
pkgname=linux-headers
pkgver=4.14.48
pkgrel=8
pkgdesc="Linux system headers"
url="https://kernel.org"
arch="all"
options="!check !dbg !strip !tracedeps" # Headers only
license="GPL-2.0-only"
makedepends="perl"
source="https://kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz
https://distfiles.adelielinux.org/source/linux-4.14-mc$pkgrel.patch.xz
"
builddir="$srcdir/linux-4.14"
prepare() {
cd "$srcdir"
cat linux-4.14-mc$pkgrel.patch.xz | unxz -> linux-4.14-mc$pkgrel.patch
cd "$builddir"
patch -Np1 <../linux-4.14-mc$pkgrel.patch
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
package() {
local _carch=$CARCH
case "$_carch" in
aarch64*) _carch="arm64" ;;
arm*) _carch="arm" ;;
mips*) _carch="mips" ;;
s390*) _carch="s390" ;;
ppc*) _carch="powerpc" ;;
esac
cd "$builddir"
mkdir -p "$pkgdir/usr"
make headers_install ARCH="${_carch}" INSTALL_HDR_PATH="$pkgdir/usr"
find "$pkgdir/usr" \( -name .install -o -name ..install.cmd \) -exec \
rm -f {} \;
# provided by libdrm
rm -rf "$pkgdir"/usr/include/drm
}
sha512sums="77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8 linux-4.14.tar.xz
3fe2da1714cc83d909ba43d27c7f22ef4f2a6ecfd91ff81e0e141a0dd742ec78ad11392186871762f410615ae7c7f33dd814e0f194c7f7aed1dee2d9fca0252d linux-4.14-mc8.patch.xz"
|