sources: SOURCELIST.txt: sort list
[dragora.git] / recipes / kernel / headers / recipe
blob0741e58a0d8bd6b461e68ec41c906160f6353550
1 # Build recipe for linux (libre) headers.
3 # Copyright (c) 2015-2019 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=linux
18 version=4.19.26
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/kernel"
24 pkgname=kernel-headers
26 tarname=${program}-libre-${version}-gnu.tar.lz
28 # Remote source(s)
29 fetch=http://linux-libre.fsfla.org/pub/linux-libre/releases/${version}-gnu/$tarname
31 description="
32 The Linux kernel headers.
34 The Linux kernel headers from the GNU Linux-libre project.
37 homepage=http://www.gnu.org/software/linux-libre
38 license="GPLv2 only"
40 build()
42     set -e
44     unpack "${tardir}/$tarname"
46     cd "$srcdir"
48     # Set sane permissions
49     chmod -R u+w,go-w,a+rX-s .
51     make mrproper
53     make V=1 HOSTCFLAGS+="-fno-stack-protector" headers_check
55     make HOSTCFLAGS+="-fno-stack-protector" \
56      INSTALL_HDR_PATH="${destdir}/usr" \
57      headers_install
59     # Remove cruft
60     find "${destdir}/usr/include" \
61       -type f \( -name .install -o -name ..install.cmd \) -exec rm -f {} +