recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / kernel / headers / recipe
blobd15d20a4c7067d32132bb53cb4101a33986636b7
1 # Build recipe for linux (libre) headers.
3 # Copyright (c) 2015-2020 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=5.4.28
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=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
52     make headers
54     # Holy molly... the 'headers_install' target cannot be used,
55     # because it requires rsync(1) - which is not available early.
57     mkdir -p "${destdir}/usr/include"
58     cp -Rp usr/include/* "${destdir}/usr/include/"
60     # Remove cruft
61     find "${destdir}/usr/include" -name '.*' -exec rm -rf {} +
62     rm -f "${destdir}/usr/include/Makefile"