strip remaining libraries for the distribution size
[dragora.git] / recipes / xorg / extra / libinput / recipe
blobc4eb55442b99277727ec2e5b7a4db2edef757f14
1 # Build recipe for libinput.
3 # Copyright (c) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
4 # Copyright (c) 2017 Matias Fonzo, <selk@dragora.org>.
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 #    http://www.apache.org/licenses/LICENSE-2.0
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
18 program=libinput
19 version=1.8.4
20 release=1
22 tarname=${program}-${version}.tar.xz
24 # Remote source(s)
25 fetch=http://www.freedesktop.org/software/libinput/$tarname
27 description="
28 Input device library.
30 Library that handles input devices for display servers and other
31 applications that need to directly deal with input devices.
34 homepage=http://www.x.org
35 license="MIT X Consortium"
37 # Source documentation
38 docs="COPYING README.md"
39 docsdir="${docdir}/${program}-${version}"
41 build()
43     set -e
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
50      $configure_args \
51      --libdir=/usr/lib${libSuffix} \
52      --infodir=$infodir \
53      --mandir=$mandir \
54      --docdir=$docsdir \
55      --disable-documentation \
56      --disable-debug-gui \
57      --disable-tests \
58      --disable-libwacom \
59      || true
61     make -j${jobs} V=1
62     make -j${jobs} DESTDIR="$destdir" install-strip
64     # Compress info documents deleting index file for the package
65     if test -d "${destdir}/$infodir"
66     then
67         rm -f "${destdir}/${infodir}/dir"
68         lzip -9 "${destdir}/${infodir}"/*
69     fi
71     # Compress and link man pages (if needed)
72     if test -d "${destdir}/$mandir"
73     then
74         (
75             cd "${destdir}/$mandir"
76             find . -type f -exec lzip -9 '{}' +
77             find . -type l | while read -r file
78             do
79                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
80                 rm -- "$file"
81             done
82         )
83     fi
85     # Copy documentation
86     mkdir -p "${destdir}${docsdir}"
88     for file in $docs
89     do
90         if test -e $file
91         then
92             cp -p $file "${destdir}${docsdir}"
93         fi
94     done