strip remaining libraries for the distribution size
[dragora.git] / recipes / tools / util-linux / recipe
bloba4f4e512d4a805989cb2bad746fadec7a933bfa6
1 # Build recipe for util-linux.
3 # Copyright (c) 2016-2017 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=util-linux
18 version=2.31.1
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=http://www.kernel.org/pub/linux/utils/util-linux/v${version}/$tarname
26 description="
27 Suite of essential utilities.
29 The util-linux package contains miscellaneous utility programs for
30 handling file systems, consoles, partitions, and messages.
33 homepage=http://github.com/karelzak/util-linux
34 license="GPLv2+, LGPLv2.1 | Public domain, BSD with advertising"
36 # Source documentation
37 docs="AUTHORS COPYING ChangeLog NEWS README*"
38 docsdir="${docdir}/${program}-${version}"
40 build()
42     set -e
44     unpack "${tardir}/$tarname"
46     cd "$srcdir"
48     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
49      $configure_args \
50      --libdir=/usr/lib${libSuffix} \
51      --infodir=$infodir \
52      --mandir=$mandir \
53      --docdir=$docsdir \
54      --enable-usrdir-path \
55      --enable-static \
56      --enable-shared \
57      --enable-sulogin-emergency-mount \
58      --enable-use-tty-group \
59      --enable-wall \
60      --enable-write \
61      --with-btrfs \
62      --without-python \
63      --without-systemd \
64      --without-readline \
65      --build="$(cc -dumpmachine)"
67     make -j${jobs} V=1
68     make -j${jobs} DESTDIR="$destdir" install-strip
70     # Compress info documents deleting index file for the package
71     if test -d "${destdir}/$infodir"
72     then
73         rm -f "${destdir}/${infodir}/dir"
74         lzip -9 "${destdir}/${infodir}"/*
75     fi
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 '{}' +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     # Copy documentation
92     mkdir -p "${destdir}${docsdir}"
93     cp -p $docs "${destdir}${docsdir}"