1 # Build recipe for cairo.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018, 2021-2022 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
25 # Define a category for the output of the package name
28 # The installation of this package replaces to
31 tarname=${program}-${version}.tar.xz
34 #fetch=https://www.cairographics.org/releases/$tarname
35 fetch=https://download.gnome.org/sources/cairo/1.17/$tarname
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"
48 docs="AUTHORS BIBLIOGRAPHY BUGS CODING_STYLE COPYING* HACKING NEWS README"
49 docsdir="${docdir}/${program}-${version}"
53 unpack "${tardir}/$tarname"
57 # Adapt this package for binutils-2.39 or later (Thanks to BLFS!)
58 sed -e 's/PTR/void */' -i util/cairo-trace/lookup-symbol.c
60 # Fix a pkg-config file that may cause errors later (Thanks to BLFS!)
61 sed -e "/@prefix@/a exec_prefix=@exec_prefix@" \
62 -i util/cairo-script/cairo-script-interpreter.pc.in
64 # Set sane permissions
65 chmod -R u+w,go-w,a+rX-s .
67 ./configure CPPFLAGS="$QICPPFLAGS" \
68 CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
70 --libdir=/usr/lib${libSuffix} \
87 --build="$(gcc -dumpmachine)"
90 make -j${jobs} DESTDIR="$destdir" install-strip
92 # Compress info documents deleting index file for the package
93 if test -d "${destdir}/$infodir"
95 rm -f "${destdir}/${infodir}/dir"
96 lzip -9 "${destdir}/${infodir}"/*
99 # Compress and link man pages (if needed)
100 if test -d "${destdir}/$mandir"
103 cd "${destdir}/$mandir"
104 find . -type f -exec lzip -9 {} +
105 find . -type l | while read -r file
107 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
114 mkdir -p "${destdir}/$docsdir"
115 cp -p $docs "${destdir}/$docsdir"