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