strip remaining libraries for the distribution size
[dragora.git] / recipes / libs / expat / recipe
blob76669b8caa48248a8052649bdd4a69679c250285
1 # Recipe file for expat.
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=expat
19 version=2.2.5
20 release=1
22 description="
23 A stream-oriented XML parser library written in C.
25 Expat excels with files too large to fit RAM, and where
26 performance and flexibility are crucial.
29 homepage=http://libexpat.github.io/
30 license=MIT
32 tarname=${program}-${version}.tar.bz2
34 # Remote source(s)
35 fetch=http://downloads.sourceforge.net/project/expat/expat/${version}/$tarname
37 # Source documentation
38 docs="AUTHORS COPYING Changes README.md"
39 docsdir="${docdir}/${program}-${version}"
41 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     --mandir=$mandir \
52     --docdir=$docsdir \
53     --build="$(cc -dumpmachine)" \
54     || true
56     make -j${jobs} V=1
57     make -j${jobs} DESTDIR="$destdir" install-strip
59     # Compress manual pages
60     if [ -d "${destdir}/$mandir" ] ; then
61         (
62             cd "${destdir}/$mandir"
63             find . -type f -exec lzip -9 '{}' +
64             find . -type l | while read -r file
65             do
66                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
67                 rm -- "$file"
68             done
69         )
70     fi
72     # Copy documentation
73     mkdir -p "${destdir}${docsdir}"
74     cp -p $docs "${destdir}${docsdir}/"