recipes: compressors/xz: Upgraded to version 5.6.2
[dragora.git] / recipes / tools / util-linux-pass1 / recipe
blob6f920454340515f612ce5b4cfb194ab0b5d6c257
1 # Build recipe for util-linux (pass 1).
3 # Copyright (c) 2016-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=util-linux
21 version=2.38.1
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      --disable-raw \
75      --without-btrfs \
76      --without-python \
77      --without-systemd \
78      --without-readline \
79      --build="$(gcc -dumpmachine)"
81     make -j${jobs} V=1
82     make -j${jobs} DESTDIR="$destdir" install-strip
84     # Compress info documents deleting index file for the package
85     if test -d "${destdir}/$infodir"
86     then
87         rm -f "${destdir}/${infodir}/dir"
88         lzip -9 "${destdir}/${infodir}"/*
89     fi
91     # Compress and link man pages (if needed)
92     if test -d "${destdir}/$mandir"
93     then
94         (
95             cd "${destdir}/$mandir"
96             find . -type f -exec lzip -9 {} +
97             find . -type l | while read -r file
98             do
99                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
100                 rm -- "$file"
101             done
102         )
103     fi
105     # Copy documentation
106     mkdir -p "${destdir}/$docsdir"
107     cp -p $docs "${destdir}/$docsdir"