recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / x-libs / cairo_pass1 / recipe
blob83c861d31582f6a93508d0fa93ac15721f3250f9
1 # Build recipe for Cairo (pass1).
3 # Copyright (C) 2018, 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=cairo
18 version=1.16.0
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=x-libs
24 pkgname=cairo_pass1
26 tarname=${program}-${version}.tar.xz
28 # Remote source(s)
29 fetch=http://www.cairographics.org/releases/$tarname
31 description="
32 Temporary installation of cairo.
34 This is a temporary installation that is replaced with additional
35 support included in the final cairo package.
38 homepage=http://www.cairographics.org/
39 license="LGPLv2.1 | MPLv1.1"
41 # Copy documentation
42 docsdir="${docdir}/${pkgname}-${version}"
44 build()
46     set -e
47     unpack "${tardir}/$tarname"
48     
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
53     
54     ./configure \
55     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
56      $configure_args \
57      --libdir=/usr/lib${libSuffix} \
58      --infodir=$infodir \
59      --mandir=$mandir \
60      --enable-static=no \
61      --enable-shared=yes \
62      --enable-tee \
63      --enable-xlib \
64      --enable-xcb \
65      --enable-ft \
66      --disable-trace \
67      --disable-trace \
68      --disable-xcb-shm \
69      --disable-xlib-xcb \
70      --disable-gtk-doc \
71      --build="$(cc -dumpmachine)"
73     make -j${jobs} V=1
74     make -j${jobs} DESTDIR="$destdir" install-strip
76     # Compress info documents deleting index file for the package
77     if test -d "${destdir}/$infodir"
78     then
79         rm -f "${destdir}/${infodir}/dir"
80         lzip -9 "${destdir}/${infodir}"/*
81     fi
83     # Compress and link man pages (if needed)
84     if test -d "${destdir}/$mandir"
85     then
86         (
87             cd "${destdir}/$mandir"
88             find . -type f -exec lzip -9 '{}' +
89             find . -type l | while read -r file
90             do
91                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
92                 rm -- "$file"
93             done
94         )
95     fi