recipes: kernel: Use a separate kernel for the i586 architecture
[dragora.git] / recipes / libs / librsvg / recipe
blob393fb94f9e7c3c9d9476d8011bcceb1ab34bd44b
1 # Build recipe for librsvg.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (c) 2018-2019, 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=librsvg
22 version=2.40.21
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=libs
28 tarname=${program}-${version}.tar.xz
30 # Remote source(s)
31 fetch="https://download.gnome.org/sources/librsvg/${version%.*}/$tarname"
33 description="
34 A high performance SVG rendering library.
36 The librsvg package contains librsvg libraries and tools used to
37 manipulate, convert and view Scalable Vector Graphic images.
40 homepage=https://wiki.gnome.org/Projects/LibRsvg
41 license="GPLv2+, LGPLv2+"
43 # Source documentation
44 docs="AUTHORS COPYING* NEWS README"
45 docsdir="${docdir}/${program}-${version}"
47 build()
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Apply patches from Debian (Thanks!)
54     patch -Np1 -i "${worktree}/patches/librsvg/10_rsvg-gz.patch"
55     patch -Np1 -i "${worktree}/patches/librsvg/remove-tests.patch"
56     patch -Np1 -i "${worktree}/patches/librsvg/hide-private-symbol.patch"
58     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" \
59     LDFLAGS="$QILDFLAGS -Wl,--no-keep-memory,-z,defs -Wl,-O1 -Wl,--as-needed" \
60     $configure_args \
61     --mandir=$mandir \
62     --libdir=/usr/lib${libSuffix} \
63     --enable-static=no \
64     --enable-shared=yes \
65     --enable-pixbuf-loader \
66     --enable-introspection \
67     --enable-vala \
68     --disable-rpath \
69     --build="$(gcc -dumpmachine)"
71     make -j${jobs} V=1
72     make -j${jobs} V=1 DESTDIR="$destdir" install-strip
74     # Compress and link man pages (if needed)
75     if test -d "${destdir}/$mandir"
76     then
77         (
78             cd "${destdir}/$mandir"
79             find . -type f -exec lzip -9 {} +
80             find . -type l | while read -r file
81             do
82                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
83                 rm -- "$file"
84             done
85         )
86     fi
88     # Copy documentation
89     mkdir -p "${destdir}/$docsdir"
90     cp -p $docs "${destdir}/$docsdir"