recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / libs / gettext / recipe
blob154d9a736e037d288f04e15268c3e54fd29117c0
1 # Build recipe for gettext.
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=gettext
21 version=0.21
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=libs
27 tarname=${program}-${version}.tar.lz
29 # Remote source(s)
30 fetch=https://ftp.gnu.org/gnu/gettext/$tarname
32 description="
33 Utilities for internationalization and localization.
35 The GNU gettext package contains utilities for internationalization
36 and localization.  These allow programs to be compiled with NLS
37 (Native Language Support), enabling them to output messages in the
38 user's native language.
41 homepage=https://www.gnu.org/software/gettext
42 license=GPLv3+
44 # Source documentation
45 docs="AUTHORS COPYING ChangeLog HACKING 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     ./configure CPPFLAGS="$QICPPFLAGS" \
58     CFLAGS="$QICFLAGS" CXXFLAGS="$QICXXFLAGS" LDFLAGS="$QILDFLAGS" \
59      $configure_args \
60      --libdir=/usr/lib${libSuffix} \
61      --infodir=$infodir \
62      --mandir=$mandir \
63      --docdir=$docsdir \
64      --htmldir=${docsdir}/html \
65      --enable-shared=yes \
66      --enable-static=no \
67      --build="$(gcc -dumpmachine)"
69     make -j${jobs} V=1
70     make -j${jobs} DESTDIR="$destdir" install-strip
72     # Compress examples
73     (
74         cd "${destdir}$docsdir" && \
75          tarlz --solid -9 -cpf examples.tar.lz examples/ && \
76           rm -rf examples/
77     )
79     # Compress info documents deleting index file for the package
80     if test -d "${destdir}/$infodir"
81     then
82         rm -f "${destdir}/${infodir}/dir"
83         lzip -9 "${destdir}/${infodir}"/*
84     fi
86     # Compress and link man pages (if needed)
87     if test -d "${destdir}/$mandir"
88     then
89         (
90             cd "${destdir}/$mandir"
91             find . -type f -exec lzip -9 {} +
92             find . -type l | while read -r file
93             do
94                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
95                 rm -- "$file"
96             done
97         )
98     fi
100     # Copy documentation
101     mkdir -p "${destdir}/$docsdir"
102     cp -p $docs "${destdir}/$docsdir"