strip remaining libraries for the distribution size
[dragora.git] / recipes / libs / libepoxy / recipe
blob0c52275d98318471e1a587d1b93d6a16e139c059
1 # Build recipe for liepoxy.
3 # Copyright (c) 2017 Mateus P. Rodrigues, <mprodrigues@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=libepoxy
18 version=1.4.3
19 release=1
21 tarname=${program}-${version}.tar.xz
23 # Remote source(s)
24 fetch=http://github.com/anholt/libepoxy/releases/download/${version}/$tarname
26 description="
27 libepoxy is a library for handling OpenGL function pointer management.
30 homepage=https://github.com/anholt/libepoxy
31 license=MIT
33 # Source documentation
34 docs="COPYING ChangeLog README.md"
35 docsdir="${docdir}/${pkgname}-${version}"
37 build()
39     set -e
41     unpack "${tardir}/$tarname"
43     cd "$srcdir"
45     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
46      $configure_args \
47      --libdir=/usr/lib${libSuffix} \
48      --docdir=$docsdir \
49      --infodir=$infodir \
50      --mandir=$mandir \
51      --build="$(cc -dumpmachine)"
53     make -j${jobs} V=1
54     make -j${jobs} DESTDIR="$destdir" install-strip
56     # Compress info documents deleting index file for the package
57     if test -d "${destdir}/$infodir"
58     then
59         rm -f "${destdir}/${infodir}/dir"
60         lzip -9 "${destdir}/${infodir}"/*
61     fi
63     # Compress and link man pages (if needed)
64     if test -d "${destdir}/$mandir"
65     then
66         (
67             cd "${destdir}/$mandir"
68             find . -type f -exec lzip -9 '{}' +
69             find . -type l | while read -r file
70             do
71                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
72                 rm -- "$file"
73             done
74         )
75     fi
77     # Copy documentation
78     mkdir -p "${destdir}${docsdir}"
80     for file in $docs
81     do
82         cp -p $file "${destdir}${docsdir}"
83     done