archive: dragora-installer: make sure to create and delete possible empty (expected...
[dragora.git] / recipes / libs / librsvg / recipe
blob8d86f92635d0cc5609b67fe84f80021235548e25
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.
18 program=librsvg
19 version=2.40.20
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/libs"
25 tarname=${program}-${version}.tar.xz
27 # Remote source(s)
28 fetch=http://ftp.gnome.org/pub/gnome/sources/librsvg/2.40/$tarname
30 description="
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}"
44 build()
46     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
52     $configure_args \
53     --mandir=$mandir \
54     --infodir=$infodir \
55     --libdir=/usr/lib${LIBDIRSUFFIX} \
56     --enable-introspection \
57     --with-svgz \
58     --with-croco \
59     --build="$(cc -dumpmachine)"
61     make -j${jobs} V=1
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"
66     then
67         rm -f "${destdir}/${infodir}/dir"
68         lzip -9 "${destdir}/${infodir}"/*
69     fi
71     # Compress and link man pages (if needed)
72     if test -d "${destdir}/$mandir"
73     then
74         (
75             cd "${destdir}/$mandir"
76             find . -type f -exec lzip -9 '{}' +
77             find . -type l | while read -r file
78             do
79                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
80                 rm -- "$file"
81             done
82         )
83     fi
85     # Copy documentation
86     mkdir -p "${destdir}${docsdir}"
88     for file in $docs
89     do
90        cp -p $file "${destdir}${docsdir}"
91     done