recipes: boot/sysvinit: upgraded to version 2.94
[dragora.git] / recipes / libs / tiff / recipe
blobee03975eb66eb28e941258d815a14c4b0ca24d1c
1 # Build recipe for tiff.
3 # Copyright (C) 2018, 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=tiff
18 version=4.0.10
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/libs"
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://download.osgeo.org/libtiff/$tarname
29 description="
30 TIFF library and utilities.
32 The tiff package contains the TIFF libraries and associated utilities.
33 The libraries are used by many programs for reading and writing TIFF
34 files and the utilities are useful for general work with TIFF files.
37 homepage=http://www.simplesystems.org/libtiff/
38 license=Custom
40 # Source documentation (already copied by the build system)
41 docsdir="${docdir}/${program}-${version}"
43 build()
45     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     # Set sane permissions
51     chmod -R u+w,go-w,a+rX-s .
53     ./configure \
54     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
55      $configure_args \
56      --libdir=/usr/lib${libSuffix} \
57      --mandir=$mandir \
58      --docdir=$docsdir \
59      --enable-static=yes \
60      --enable-shared=yes \
61      --enable-cxx \
62      --disable-lzma
64     make -j${jobs} V=1
65     make -j${jobs} DESTDIR="$destdir" install-strip
67     # Compress and link man pages (if needed)
68     if test -d "${destdir}/$mandir"
69     then
70         (
71             cd "${destdir}/$mandir"
72             find . -type f -exec lzip -9 '{}' +
73             find . -type l | while read -r file
74             do
75                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
76                 rm -- "$file"
77             done
78         )
79     fi