qi: Improve removal of previous (found) package names, enhance messages and report
[dragora.git] / recipes / tools / util-linux-pass1 / recipe
blob28bf8ba350d641d9ab16ffd28339b27883b167c3
1 # Build recipe for util-linux (pass 1).
3 # Copyright (c) 2016-2021 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=util-linux
21 version=2.37.2
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tools
27 pkgname=util-linux-pass1
29 tarname=${program}-${version}.tar.gz
31 # Remote source(s)
32 fetch="https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v${version%.*}/$tarname"
34 description="
35 Suite of essential utilities.
37 The util-linux package contains miscellaneous utility programs for
38 handling file systems, consoles, partitions, and messages.
41 homepage=https://github.com/karelzak/util-linux
42 license="GPLv2+, LGPLv2.1 | Public domain, BSD with advertising"
44 # Source documentation
45 docs="AUTHORS COPYING ChangeLog NEWS README*"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     ./configure CPPFLAGS="$QICPPFLAGS" \
58     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --infodir=$infodir \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --enable-usrdir-path \
65      --enable-static=no \
66      --enable-shared=yes \
67      --enable-sulogin-emergency-mount \
68      --enable-use-tty-group \
69      --enable-wall \
70      --enable-write \
71      --enable-libblkid \
72      --enable-libmount \
73      --enable-libuuid \
74      --without-btrfs \
75      --without-python \
76      --without-systemd \
77      --without-readline \
78      --build="$(gcc -dumpmachine)"
80     make -j${jobs} V=1
81     make -j${jobs} DESTDIR="$destdir" install-strip
83     # Compress info documents deleting index file for the package
84     if test -d "${destdir}/$infodir"
85     then
86         rm -f "${destdir}/${infodir}/dir"
87         lzip -9 "${destdir}/${infodir}"/*
88     fi
90     # Compress and link man pages (if needed)
91     if test -d "${destdir}/$mandir"
92     then
93         (
94             cd "${destdir}/$mandir"
95             find . -type f -exec lzip -9 {} +
96             find . -type l | while read -r file
97             do
98                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
99                 rm -- "$file"
100             done
101         )
102     fi
104     # Copy documentation
105     mkdir -p "${destdir}${docsdir}"
106     cp -p $docs "${destdir}${docsdir}"/