recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / kernel / firmware / recipe
blob3f54447e3ddd2369e5910a3cfbba79091003426a
1 # Build recipe for linux-libre-firmware.
3 # Copyright (c) 2017-2018 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-libre-firmware
18 version=1.3.1
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=kernel
24 tarname=${program}-${version}.tar.lz
26 # Remote source(s)
27 fetch=http://jxself.org/firmware/$tarname
29 description="
30 GNU Linux-libre firmware.
32 The release of free firmware for use with the kernel Linux-libre.
34 For more information, see:
35 http://jxself.org/free-firmware.shtml
38 homepage=http://jxself.org/firmware
39 license=Custom
41 # Source documentation
42 docs="GPL-2 GPL-3 MPL-2 README WHENCE"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     # Prepare package to copy the firmwares (data)
58     mkdir -p "${destdir}/lib/firmware"
59     cp -R -p bin/* "${destdir}/lib/firmware/"
60     chown -R root:root "${destdir}/lib/firmware/"
62     # Copy documentation
63     mkdir -p "${destdir}${docsdir}"
64     cd src && cp -p $docs "${destdir}${docsdir}"