1 # Build recipe for Cairo (pass1).
3 # Copyright (C) 2018, 2021 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 # Exit immediately on any error
26 # Define a category for the output of the package name
29 tarname=${program}-${version}.tar.xz
32 #fetch=https://www.cairographics.org/releases/$tarname
33 fetch=https://cairographics.org/snapshots/$tarname
36 Temporary installation of cairo.
38 This is a temporary installation that is replaced with additional
39 support included in the final cairo package.
42 homepage=https://www.cairographics.org/
43 license="LGPLv2.1 | MPLv1.1"
46 docsdir="${docdir}/${pkgname}-${version}"
50 unpack "${tardir}/$tarname"
54 # Set sane permissions
55 chmod -R u+w,go-w,a+rX-s .
58 CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
60 --libdir=/usr/lib${libSuffix} \
74 --build="$(gcc -dumpmachine)"
77 make -j${jobs} DESTDIR="$destdir" install
79 # Compress info documents deleting index file for the package
80 if test -d "${destdir}/$infodir"
82 rm -f "${destdir}/${infodir}/dir"
83 lzip -9 "${destdir}/${infodir}"/*
86 # Compress and link man pages (if needed)
87 if test -d "${destdir}/$mandir"
90 cd "${destdir}/$mandir"
91 find . -type f -exec lzip -9 {} +
92 find . -type l | while read -r file
94 ln -sf "$(readlink -- "$file").lz" "${file}.lz"