recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / x-libs / cairo / recipe
blobff62bc5e457e24c50d78a7968cc4319557f31b39
1 # Build recipe for Cairo.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018, 2021 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 # Exit immediately on any error
19 set -e
21 program=cairo
22 version=1.17.4
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=x-libs
28 # The installation of this package replaces to
29 replace=cairo-pass1
31 tarname=${program}-${version}.tar.xz
33 # Remote source(s)
34 #fetch=https://www.cairographics.org/releases/$tarname
35 fetch=https://cairographics.org/snapshots/$tarname
37 description="
38 A vector graphics library.
40 Cairo is designed to produce identical output on all output media while
41 taking advantage of display hardware acceleration when available.
44 homepage=https://www.cairographics.org/
45 license="LGPLv2.1 | MPLv1.1"
47 # Copy documentation
48 docs="AUTHORS BIBLIOGRAPHY BUGS CODING_STYLE COPYING* HACKING NEWS README"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
54     
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
59     
60     ./configure \
61     CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
62      $configure_args \
63      --libdir=/usr/lib${libSuffix} \
64      --infodir=$infodir \
65      --mandir=$mandir \
66      --enable-static=no \
67      --enable-shared=yes \
68      --enable-tee \
69      --enable-xlib \
70      --enable-xcb \
71      --enable-ft \
72      --enable-svg \
73      --enable-xml \
74      --enable-gobject \
75      --disable-trace \
76      --disable-xcb-shm \
77      --disable-xlib-xcb \
78      --build="$(gcc -dumpmachine)"
80     make -j${jobs} V=1
81     make -j${jobs} DESTDIR="$destdir" install-strip
83     # Compress info documents deleting index file for the package
84     if test -d "${destdir}/$infodir"
85     then
86         rm -f "${destdir}/${infodir}/dir"
87         lzip -9 "${destdir}/${infodir}"/*
88     fi
90     # Compress and link man pages (if needed)
91     if test -d "${destdir}/$mandir"
92     then
93         (
94             cd "${destdir}/$mandir"
95             find . -type f -exec lzip -9 {} +
96             find . -type l | while read -r file
97             do
98                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
99                 rm -- "$file"
100             done
101         )
102     fi
104     # Copy documentation
105     mkdir -p "${destdir}/$docsdir"
106     cp -p $docs "${destdir}/$docsdir"