recipes: Replace 'outdir' with package hash tags
[dragora.git] / recipes / x-libs / lcms2 / recipe
blob76b597e19ec0245e6e2f2eb4612508777df7366c
1 # Build recipe for lcms.
3 # Copyright (c) 2019 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=lcms2
18 version=2.9
19 release=1
21 # Define hash tag to categorize the package name output
22 pkghashtag=x-libs
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch=http://downloads.sourceforge.net/project/lcms/lcms/${version}/$tarname
29 description="
30 An ICC-based CMM for color management.
32 Little CMS intends to be an OPEN SOURCE small-footprint color
33 management engine, with special focus on accuracy and performance.
35 It uses the International Color Consortium standard (ICC), which is
36 the modern standard when regarding to color management.  The ICC
37 specification is widely used and is referred to in many International
38 and other de-facto standards.  It was approved as an International
39 Standard, ISO 15076-1, in 2005.
42 homepage=http://www.littlecms.com
43 license=MIT
45 # Source documentation
46 docs="AUTHORS COPYING ChangeLog"
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     set -e
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
61      $configure_args \
62      --libdir=/usr/lib${libSuffix} \
63      --mandir=$mandir \
64      --enable-static=no \
65      --enable-shared=yes \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install
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}"