1 # Build recipe for FriBidi.
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
25 # Define a category for the output of the package name
28 tarname=${program}-${version}.tar.xz
31 fetch=https://github.com/fribidi/fribidi/releases/download/v${version}/$tarname
34 A Free Implementation of the Unicode Bidirectional Algorithm.
36 This library implements the Unicode BiDirectional algorithm, which
37 is needed in order to support right-to-left languages such as Arabic
38 and Hebrew. It is used in display software like KDE's SVG modules.
41 homepage=https://github.com/fribidi/fribidi/
44 docs="AUTHORS ChangeLog COPYING NEWS README THANKS TODO"
45 docsdir="${docdir}/${program}-${version}"
49 unpack "${tardir}/$tarname"
53 # Set sane permissions
54 chmod -R u+w,go-w,a+rX-s .
56 ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
58 --libdir=/usr/lib${libSuffix} \
61 --build="$(gcc -dumpmachine)"
64 make -j${jobs} V=1 DESTDIR="$destdir" install
66 # Compress info documents deleting index file for the package
67 if test -d "${destdir}/$infodir"
69 rm -f "${destdir}/${infodir}/dir"
70 lzip -9 "${destdir}/${infodir}"/*
73 # Compress and link man pages (if needed)
74 if test -d "${destdir}/$mandir"
77 cd "${destdir}/$mandir"
78 find . -type f -exec lzip -9 {} +
79 find . -type l | while read -r file
81 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
88 mkdir -p "${destdir}${docsdir}"
89 cp -p $docs "${destdir}${docsdir}"