strip remaining libraries for the distribution size
[dragora.git] / recipes / devel / check / recipe
blob037839f35801ad7892567664dd181cc180c73124
1 # Build recipe for check.
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=check
18 version=0.12.0
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=http://downloads.sourceforge.net/project/check/check/0.10.0/$tarname
26 description="
27 Unit testing framework for C.
29 The check package is a unit testing framework for C,
30 required by some packages.
33 homepage=http://libcheck.github.io/check/index.html
34 license=LGPLv2.1
36 # Source documentation
37 docsdir="${docdir}/${program}-${version}"
39 build()
41     set -e
43     unpack "${tardir}/$tarname"
45     cd "$srcdir"
47     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
48      $configure_args \
49      --libdir=/usr/lib${libSuffix} \
50      --infodir=$infodir \
51      --mandir=$mandir \
52      --docdir=$docsdir \
53      --enable-static \
54      --enable-shared \
55      --build="$(cc -dumpmachine)"
57     make -j${jobs} V=1
58     make -j${jobs} DESTDIR="$destdir" install-strip
60     # Conform documentation directory as PACKAGE-VERSION
61     mv "${destdir}/usr/share/doc/check" "${destdir}${docsdir}"
63     # Compress info documents deleting index file for the package
64     if test -d "${destdir}/$infodir"
65     then
66         rm -f "${destdir}/${infodir}/dir"
67         lzip -9 "${destdir}/${infodir}"/*
68     fi
70     # Compress and link man pages (if needed)
71     if test -d "${destdir}/$mandir"
72     then
73         (
74             cd "${destdir}/$mandir"
75             find . -type f -exec lzip -9 '{}' +
76             find . -type l | while read -r file
77             do
78                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
79                 rm -- "$file"
80             done
81         )
82     fi