1 # Build recipe for librsvg.
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.
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/libs"
25 tarname=${program}-${version}.tar.xz
28 fetch=http://ftp.gnome.org/pub/gnome/sources/librsvg/2.40/$tarname
31 A high performance SVG rendering library.
33 The librsvg package contains librsvg libraries and tools used to
34 manipulate, convert and view Scalable Vector Graphic images.
37 homepage=http://wiki.gnome.org/Projects/LibRsvg
38 license="GPLv2+, LGPLv2+"
40 # Source documentation
41 docs="AUTHORS COPYING* NEWS README"
42 docsdir="${docdir}/${program}-${version}"
47 unpack "${tardir}/$tarname"
51 ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55 --libdir=/usr/lib${LIBDIRSUFFIX} \
56 --enable-introspection \
59 --build="$(cc -dumpmachine)"
62 make -j${jobs} V=1 DESTDIR="$destdir" install
64 # Compress info documents deleting index file for the package
65 if test -d "${destdir}/$infodir"
67 rm -f "${destdir}/${infodir}/dir"
68 lzip -9 "${destdir}/${infodir}"/*
71 # Compress and link man pages (if needed)
72 if test -d "${destdir}/$mandir"
75 cd "${destdir}/$mandir"
76 find . -type f -exec lzip -9 '{}' +
77 find . -type l | while read -r file
79 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86 mkdir -p "${destdir}${docsdir}"
90 cp -p $file "${destdir}${docsdir}"