strip remaining libraries for the distribution size
[dragora.git] / recipes / kernel / kmod / recipe
blob11f2689ff9b55ba70fda6c97a9c824b5583160df
1 # Build recipe for kmod.
3 # Copyright (c) 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=kmod
18 version=24
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=http://www.kernel.org/pub/linux/utils/kernel/kmod/$tarname
26 description="
27 Linux kernel module handling.
29 kmod is a set of tools to handle common tasks with Linux kernel modules like
30 insert, remove, list, check properties, resolve dependencies and aliases.
33 homepage=http://git.kernel.org/?p=utils/kernel/kmod/kmod.git
34 license=LGPLv2.1
36 # Source documentation
37 docs="COPYING NEWS README TODO"
38 docsdir="${docdir}/${program}-${version}"
40 build()
42     set -e
44     unpack "${tardir}/$tarname"
46     cd "$srcdir"
48     # --enable-static is not supported by kmod
50     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
51      $configure_args \
52      --libdir=/usr/lib${libSuffix} \
53      --infodir=$infodir \
54      --mandir=$mandir \
55      --docdir=$docsdir \
56      --disable-static \
57      --enable-shared \
58      --enable-tools \
59      --with-rootlibdir=/usr/lib${libSuffix} \
60      --with-zlib \
61      --without-xz \
62      --build="$(cc -dumpmachine)"
64     make -j${jobs} V=1
65     make -j${jobs} DESTDIR="$destdir" install-strip
67     # Make symlinks for compatibility
69     mkdir -p "${destdir}/usr/sbin"
70     for target in depmod insmod lsmod modinfo modprobe rmmod
71     do
72         ( cd "${destdir}/usr/sbin" && ln -sf ../bin/kmod $target )
73     done
75     # For user invocation
76     ( cd "${destdir}/usr/bin" && ln -sf ../bin/kmod lsmod )
78     # Compress info documents deleting index file for the package
79     if test -d "${destdir}/$infodir"
80     then
81         rm -f "${destdir}/${infodir}/dir"
82         lzip -9 "${destdir}/${infodir}"/*
83     fi
85     # Compress and link man pages (if needed)
86     if test -d "${destdir}/$mandir"
87     then
88         (
89             cd "${destdir}/$mandir"
90             find . -type f -exec lzip -9 '{}' +
91             find . -type l | while read -r file
92             do
93                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
94                 rm -- "$file"
95             done
96         )
97     fi
99     # Copy documentation
100     mkdir -p "${destdir}${docsdir}"
101     cp -p $docs "${destdir}${docsdir}"