More upgrades to come...
[dragora.git] / recipes / tools / mdadm / recipe
blob9d2be95a3ec7865ea093e6746f7134a4b5f9f10f
1 # Build recipe for mdadm.
3 # Copyright (c) 2018-2019, 2022 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 # Exit immediately on any error
18 set -e
20 program=mdadm
21 version=4.2
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://www.kernel.org/pub/linux/utils/raid/mdadm/$tarname
32 description="
33 mdadm is a tool for managing Linux Software RAID arrays.
35 It can create, assemble, report on, and monitor arrays.  It can also
36 move spares between raid arrays when needed.
39 homepage=https://neil.brown.name/blog/mdadm
40 license=GPLv2+
42 # Source documentation
43 docs="ANNOUNCE-${version} COPYING ChangeLog TODO"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     make -j${jobs} CXFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
56      BINDIR=/usr/sbin MANDIR=$mandir
57     make -j${jobs} MANDIR=$mandir BINDIR=/usr/sbin DESTDIR=$destdir install
59     mkdir -p "${destdir}/etc"
60     cp -p mdadm.conf-example "${destdir}/etc/mdadm.conf"
61     chmod 644 "${destdir}/etc/mdadm.conf"
62     touch "${destdir}"/etc/.graft-config
64     # Compress and link man pages (if needed)
65     if test -d "${destdir}/$mandir"
66     then
67         (
68             cd "${destdir}/$mandir"
69             find . -type f -exec lzip -9 {} +
70             find . -type l | while read -r file
71             do
72                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
73                 rm -- "$file"
74             done
75         )
76     fi
78     # Copy documentation
79     mkdir -p "${destdir}${docsdir}"
80     cp -p $docs "${destdir}${docsdir}"