strip remaining libraries for the distribution size
[dragora.git] / recipes / libs / tslib / recipe
blobbf8ca259676609da70bbdcea6f9c552944f84e68
1 # Build recipe for tslib.
3 # Copyright (c) 2017 Mateus P. Rodrigues, <mprodrigues@dragora.org>.
4 # Copyright (c) 2017 Matias Fonzo, <mprodrigues@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=tslib
19 version=1.15-rc1
20 release=1
22 pkgname=tslib
24 tarname=${program}-${version}.tar.bz2
26 # Remote source(s)
27 fetch=http://github.com/kergoth/tslib/releases/download/${version}/$tarname
29 description="
30 Touchscreen access library.
32 tslib consists of the library libts and tools that help you
33 calibrate and use it in your environment.
36 homepage=https://github.com/kergoth/tslib
37 license=LGPLv2.1
39 # Source documentation
40 docs="AUTHORS COPYING ChangeLog NEWS README* THANKS"
41 docsdir="${docdir}/${pkgname}-${version}"
43 build()
45     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
52      $configure_args \
53      --libdir=/usr/lib${libSuffix} \
54      --docdir=$docsdir \
55      --infodir=$infodir \
56      --mandir=$mandir \
57      --enable-static \
58      --enable-shared \
59      --build="$(cc -dumpmachine)"
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}"
87     cp -p $docs "${destdir}${docsdir}"