12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- # Build recipe for linux (libre) headers.
- #
- # Copyright (c) 2015-2018 Matias Fonzo, <selk@dragora.org>.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=linux
- version=4.18.17
- release=1
- # Set 'outdir' for a nice and well-organized output directory
- outdir="${outdir}/${arch}/kernel"
- pkgname=kernel-headers
- tarname=${program}-libre-${version}-gnu.tar.lz
- # Remote source(s)
- fetch=http://linux-libre.fsfla.org/pub/linux-libre/releases/${version}-gnu/$tarname
- description="
- The Linux kernel headers.
- The Linux kernel headers from the GNU Linux-libre project.
- "
- homepage=http://www.gnu.org/software/linux-libre
- license="GPLv2 only"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- # Set sane permissions
- chmod -R u+w,go-w,a+rX-s .
- make mrproper
- make V=1 HOSTCFLAGS+="-fno-stack-protector" headers_check
- make HOSTCFLAGS+="-fno-stack-protector" \
- INSTALL_HDR_PATH="${destdir}/usr" \
- headers_install
- # Remove cruft
- find "${destdir}/usr/include" \
- -type f \( -name .install -o -name ..install.cmd \) -exec rm -f {} +
- }
|