blob: 356634d6f21233a2710e9e67b10e4e08a31682d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Alan Orth <aorth@mjanja.ch>
pkgdesc="Header files and scripts for Clear Linux kernel and modules"
url="https://github.com/clearlinux-pkgs/linux"
pkgname=linux-clear-headers-bin
# check org.clearlinux.native.X.Y.Z in Manifest
_major=6.2
_minor=11
_clr=1297
pkgver=${_major}.${_minor}.${_clr}
pkgrel=1
# use in case we need to update the Arch package without incrementing pkgrel
epoch=0
arch=('x86_64')
license=('GPL2')
conflicts=("linux-clear-headers")
options=('!strip')
# see: https://cdn.download.clearlinux.org/current/latest
_clear_version=38810
_kernel_version="${_major}.${_minor}-${_clr}.native"
# hash of kernel config from Manifest.linux-dev, ie /usr/lib/kernel/config-5.3.1-843.native
# there's no way to do this automatically in the PKGBUILD
_config_hash=e17e4e795528bb022a59e20802509ed5e691c7fb6926e258ac06409072c31bc0
_config_hash_clear_version=38810
source=("Manifest.linux-dev.${_clear_version}::https://cdn.download.clearlinux.org/update/${_clear_version}/Manifest.linux-dev"
"pack-linux-dev-from-0.${_clear_version}.tar::https://cdn.download.clearlinux.org/update/${_clear_version}/pack-linux-dev-from-0.tar"
"https://cdn.download.clearlinux.org/update/${_config_hash_clear_version}/files/${_config_hash}.tar"
)
build() {
local files=$(sed -n -re "s/^[FL]...[[:space:]]+([a-f0-9]+)[[:space:]]+[[:digit:]]+[[:space:]]+\/usr\/lib\/(modules.*build.*)$/\1 \2/p" Manifest.linux-dev.${_clear_version})
local config=$(sed -n -re "s/^F.b.[[:space:]]+([a-f0-9]+)[[:space:]]+[[:digit:]]+[[:space:]]+\/usr\/lib\/kernel\/config.*$/\1/p" Manifest.linux-dev.${_clear_version})
local map=$(sed -n -re "s/^F.b.[[:space:]]+([a-f0-9]+)[[:space:]]+[[:digit:]]+[[:space:]]+\/usr\/lib\/kernel\/System.map.*$/\1/p" Manifest.linux-dev.${_clear_version})
is_path=0
filename=''
for line in $files; do
if [ $is_path = 0 ]; then
filename=$line
else
mkdir -p $line
rmdir $line
cp -P staged/$filename $line
fi
is_path=$(($is_path ^ 1))
done
mv $config modules/$_kernel_version/build/.config
mv staged/${map} modules/$_kernel_version/build/System.map
}
package() {
mkdir -p $pkgdir/usr/lib
cp -Pr modules $pkgdir/usr/lib
}
b2sums=('7cf52409c31d4a8b208a96f4c2ef17974fba10ddcc6e8d5f38710667b392bffed5ca487e59dfe4367c8124a159fe32ae76d71ae6d86507aaf9e1afca736c8169'
'5bf030d988744410704e670ff63d8d1a8a4ae0c90a31164c0eca9b21cea5ac46996df141cba41e94065a9075b5d1fae046e4176bca12924e22da32e075ccdc11'
'9745c0cf8053d5de64adba9000b71237cbe5c8d72016a9d9fd5f0502b425217b937261745f5296c939113bf2940d5ce5af9dcdd4cbe389ca21a06af3a850098b')
|