recipes: Upgrade of x-libs series
[dragora.git] / recipes / x-libs / harfbuzz / recipe
blobb612b09e71e029890aff6fc9032f6f0b411b3873
1 # Build recipe for HarfBuzz.
3 # Copyright (C) 2018, MMPG <mmpg@vp.pl>
4 # Copyright (C) 2018-2019, 2021-2022 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=harfbuzz
22 version=6.0.0
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=x-libs
28 tarname=${program}-${version}.tar.xz
30 # Remote source(s)
31 fetch="
32   https://github.com/harfbuzz/harfbuzz/releases/download/${version}/$tarname
33   https://www.freedesktop.org/software/harfbuzz/release/$tarname
36 description="
37 An OpenType text shaping engine.
39 The harfbuzz package contains an OpenType text shaping engine.
42 homepage=https://www.freedesktop.org/wiki/Software/HarfBuzz/
43 license=BSD
45 docs="AUTHORS CONFIG.md COPYING ChangeLog NEWS README* THANKS"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     unpack "${tardir}/$tarname"
52     cd "$srcdir"
54     # Set sane permissions
55     chmod -R u+w,go-w,a+rX-s .
57     rm -rf BUILD
58     mkdir BUILD
59     cd BUILD
61     CPPFLAGS="$QICPPFLAGS" \
62     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
63     meson setup $configure_args \
64      --libdir=lib${libSuffix} \
65      --mandir=$mandir \
66      --buildtype=release \
67      --strip \
68      -Dbenchmark=disabled \
69      ..
71     ninja -j${jobs}
72     DESTDIR="$destdir" ninja -j${jobs} install
74     cd ..
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
97     # Copy documentation
98     mkdir -p "${destdir}/$docsdir"
99     cp -p $docs "${destdir}/$docsdir"