qi: make release of qi 1.1
[dragora.git] / recipes / x-libs / fribidi / recipe
bloba7611f230292a9167de4ae50e43bbfce49beec5c
1 # Build recipe for FriBidi.
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=fribidi
19 version=1.0.5
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/x-libs"
25 tarname=${program}-${version}.tar.bz2
27 # Remote source(s)
28 fetch=http://github.com/fribidi/fribidi/releases/download/v${version}/$tarname
30 description="
31 A Free Implementation of the Unicode Bidirectional Algorithm.
33 This library implements the Unicode BiDirectional algorithm, which
34 is needed in order to support right-to-left languages such as Arabic
35 and Hebrew.  It is used in display software like KDE's SVG modules.
38 homepage=http://github.com/fribidi/fribidi/
39 license=LGPLv2.1
41 docs="AUTHORS ChangeLog COPYING NEWS README THANKS TODO"
42 docsdir="${docdir}/${program}-${version}"
44 build()
46     set -e
47     unpack "${tardir}/$tarname"
49     cd "$srcdir"
51     # Set sane permissions
52     chmod -R u+w,go-w,a+rX-s .
54     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55      $configure_args \
56      --libdir=/usr/lib${libSuffix} \
57      --mandir=$mandir \
58      --infodir=$infodir \
59      --build="$(cc -dumpmachine)"
61     make -j${jobs} V=1
62     make -j${jobs} V=1 DESTDIR="$destdir" install-strip
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}"
87     cp -p $docs "${destdir}${docsdir}"