strip remaining libraries for the distribution size
[dragora.git] / recipes / xorg / lib / libXres / recipe
blob3da2ea5022785e83f3c15b6203c9aba99758ef86
1 # Build recipe for libXres.
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=libXres
19 version=1.2.0
20 release=1
22 tarname=${program}-${version}.tar.bz2
24 # Remote source(s)
25 fetch=http://www.x.org/releases/individual/lib/$tarname
27 description="
28 X-Resource extension client library.
30 X-Resources is an extension that allows a client to query the X server
31 about its usage of various resources.   It should not be confused with
32 the X resource database access functions.
35 homepage=http://www.x.org
36 license="MIT X Consortium"
38 # Source documentation
39 docs="AUTHORS COPYING ChangeLog README"
40 docsdir="${docdir}/${program}-${version}"
42 build()
44     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
51      $configure_args \
52      --libdir=/usr/lib${libSuffix} \
53      --infodir=$infodir \
54      --mandir=$mandir \
55      --docdir=$docsdir \
56      || true
58     make -j${jobs} V=1
59     make -j${jobs} DESTDIR="$destdir" install-strip
61     # Compress info documents deleting index file for the package
62     if test -d "${destdir}/$infodir"
63     then
64         rm -f "${destdir}/${infodir}/dir"
65         lzip -9 "${destdir}/${infodir}"/*
66     fi
68     # Compress and link man pages (if needed)
69     if test -d "${destdir}/$mandir"
70     then
71         (
72             cd "${destdir}/$mandir"
73             find . -type f -exec lzip -9 '{}' +
74             find . -type l | while read -r file
75             do
76                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
77                 rm -- "$file"
78             done
79         )
80     fi
82     # Copy documentation
83     mkdir -p "${destdir}${docsdir}"
84     cp -p $docs "${destdir}${docsdir}"