recipes: Upgrade of boot, compressors, shells, and daemons series (devel in progress)
[dragora.git] / recipes / braille / liblouis / recipe
blobdd3f7efcf4de4fc1e4378fac1377b920c9b0ad1c
1 # Build recipe for liblouis.
3 # Copyright (c) 2022 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Exit immediately on any error
18 set -e
20 program=liblouis
21 version=3.24.0
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=braille
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://github.com/liblouis/liblouis/releases/download/v${version}/$tarname
32 description="
33 A Braille translator and back-translator.
35 The liblouis package suite provides an open-source braille translator,
36 back-translator and formatter for a large number of languages and
37 braille codes.  It is a set of libraries designed for use in any of a
38 number of applications, both free and commercial.
40 It is written in C so that it does not require a runtime environment
41 and hence can be used in applications written in high-level languages
42 such as Java and Python.
45 homepage=http://liblouis.org
46 license="GPLv3+, LGPLv2.1"
48 # Source documentation
49 docs="AUTHORS COPYING* ChangeLog HACKING NEWS README doc/liblouis.html doc/liblouis.txt"
50 docsdir="${docdir}/${program}-${version}"
52 build()
54     unpack "${tardir}/$tarname"
56     cd "$srcdir"
58     # Set sane permissions
59     chmod -R u+w,go-w,a+rX-s .
61     ./configure CPPFLAGS="$QICPPFLAGS" \
62     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
63      $configure_args \
64      --libdir=/usr/lib${libSuffix} \
65      --infodir=$infodir \
66      --mandir=$mandir \
67      --docdir=$docsdir \
68      --enable-shared=yes \
69      --enable-static=no \
70      --enable-ucs4 \
71      --without-yaml \
72      --build="$(gcc -dumpmachine)"
74     make -j${jobs} V=1
75     make -j${jobs} DESTDIR="$destdir" install
77     # Install Python bindings
78     (
79         cd python
80         python3 setup.py build
81         python3 setup.py install --prefix=/usr --root="$destdir" --optimize=1
82     )
84     # Compress info documents deleting index file for the package
85     if test -d "${destdir}/$infodir"
86     then
87         rm -f "${destdir}/${infodir}/dir"
88         lzip -9 "${destdir}/${infodir}"/*
89     fi
91     # Compress and link man pages (if needed)
92     if test -d "${destdir}/$mandir"
93     then
94         (
95             cd "${destdir}/$mandir"
96             find . -type f -exec lzip -9 {} +
97             find . -type l | while read -r file
98             do
99                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
100                 rm -- "$file"
101             done
102         )
103     fi
105     # Copy documentation
106     mkdir -p "${destdir}/$docsdir"
107     cp -p $docs "${destdir}/$docsdir"