recipes: Replace 'outdir' with package hash tags
[dragora.git] / recipes / tools / mdadm / recipe
blobdfb2d91aa02e01a51cfd64ff5f2092ebfab395bd
1 # Build recipe for mdadm.
3 # Copyright (c) 2018-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=mdadm
18 version=4.1
19 release=2
21 # Define hash tag to categorize the package name output
22 pkghashtag=tools
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://www.kernel.org/pub/linux/utils/raid/mdadm/$tarname
29 description="
30 mdadm is a tool for managing Linux Software RAID arrays.
32 It can create, assemble, report on, and monitor arrays.  It can also
33 move spares between raid arrays when needed.
36 homepage=http://neil.brown.name/blog/mdadm
37 license=GPLv2+
39 # Source documentation
40 docs="ANNOUNCE-${version} COPYING ChangeLog TODO"
41 docsdir="${docdir}/${program}-${version}"
43 build()
45     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     # Patch to include sysmacros.h unconditionally
55     patch -Np1 -i "${worktree}/patches/mdadm/mdadm-4.1_sysmacros.diff"
57     # Do not stop on warnings
58     sed -i 's/-Werror//' Makefile
60     make -j${jobs} CXFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS -static" \
61      BINDIR=/usr/sbin MANDIR=$mandir
62     make -j${jobs} MANDIR=$mandir BINDIR=/usr/sbin DESTDIR=$destdir install
64     mkdir -p "${destdir}/etc"
65     cp -p mdadm.conf-example "${destdir}/etc/mdadm.conf"
66     chmod 644 "${destdir}/etc/mdadm.conf"
67     touch "${destdir}"/etc/.graft-config
69     # Compress and link man pages (if needed)
70     if test -d "${destdir}/$mandir"
71     then
72         (
73             cd "${destdir}/$mandir"
74             find . -type f -exec lzip -9 '{}' +
75             find . -type l | while read -r file
76             do
77                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
78                 rm -- "$file"
79             done
80         )
81     fi
83     # Copy documentation
84     mkdir -p "${destdir}${docsdir}"
85     cp -p $docs "${destdir}${docsdir}"/