recipes: Replace 'outdir' with package hash tags
[dragora.git] / recipes / x-libs / gdk-pixbuf / recipe
bloba5677145eeb2d6860e623f22ff6fa3706150a969
1 # Build recipe for Gdk Pixbuf.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018-2019 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=gdk-pixbuf
19 version=2.39.2
20 release=2
22 # Define hash tag to categorize the package name output
23 pkghashtag=x-libs
25 tarname=${program}-${version}.tar.xz
27 # Remote source(s)
28 fetch="http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/${version%.*}/$tarname"
30 description="
31 An image loading library.
33 The library provides image loading and saving facilities, fast scaling
34 and compositing of pixbufs, simple animation loading (i.e.
35 animated GIFs), and rendering the libart image buffer.
38 homepage=http://developer.gnome.org/gdk-pixbuf/stable/
39 license=LGPLv2+
41 # Source documentation
42 docs="COPYING NEWS"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     mkdir -p build
56     cd build
58     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
59     meson setup $configure_args \
60      --libdir=lib${libSuffix} \
61      --mandir=$mandir \
62      --buildtype=release \
63      --strip \
64      -Dman=true \
65      -Djasper=true \
66      -Dinstalled_tests=false \
67      ..
69     ninja
70     DESTDIR="$destdir" ninja install
72     cd ..
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}"