recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / devel / texinfo / recipe
blobaae59dd3a646543dd8ca4eb1c911a98c8474046e
1 # Build recipe for texinfo.
3 # Copyright (c) 2016-2019, 2021 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=texinfo
21 version=6.8
22 release=2
24 # Define a category for the output of the package name
25 pkgcategory=devel
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch="
31   https://ftpmirror.gnu.org/texinfo/$tarname
32   https://ftp.gnu.org/gnu/texinfo/$tarname
35 description="
36 The GNU documentation system.
38 Texinfo is a documentation system that uses a single source
39 file to produce both online information and printed output.
41 It is primarily designed for writing software manuals.
44 homepage=https://www.gnu.org/software/texinfo
45 license=GPLv3+
47 # Source documentation
48 docs="AUTHORS COPYING ChangeLog NEWS README* TODO"
49 docsdir="${docdir}/${program}-${version}"
51 build()
53     unpack "${tardir}/$tarname"
55     cd "$srcdir"
57     # Set sane permissions
58     chmod -R u+w,go-w,a+rX-s .
60     # https://lists.gnu.org/archive/html/bug-texinfo/2021-09/msg00011.html
61     patch -Np1 -i "${worktree}/patches/texinfo/headings-single.patch"
63     ./configure CPPFLAGS="$QICPPFLAGS" CFLAGS="$QICFLAGS" \
64     LDFLAGS="$QILDFLAGS" \
65      $configure_args \
66      --libdir=/usr/lib${libSuffix} \
67      --infodir=$infodir \
68      --mandir=$mandir \
69      --docdir=$docsdir \
70      --build="$(gcc -dumpmachine)"
72     make -j${jobs} V=1
73     make -j${jobs} DESTDIR="$destdir" install-strip
74     make DESTDIR="$destdir" TEXMF="/usr/share/texmf" install-tex
76     # Include a cron job
78     mkdir -p "${destdir}/etc/cron.daily/"
79     cp -p "${worktree}/archive/texinfo/etc/cron.daily/texinfo" \
80           "${destdir}/etc/cron.daily/"
81     chmod 0755 "${destdir}/etc/cron.daily/texinfo"
83     # Compress info documents deleting index file for the package
84     if test -d "${destdir}/$infodir"
85     then
86         rm -f "${destdir}/${infodir}/dir"
87         lzip -9 "${destdir}/${infodir}"/*
88     fi
90     # Compress and link man pages (if needed)
91     if test -d "${destdir}/$mandir"
92     then
93         (
94             cd "${destdir}/$mandir"
95             find . -type f -exec lzip -9 {} +
96             find . -type l | while read -r file
97             do
98                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
99                 rm -- "$file"
100             done
101         )
102     fi
104     # Copy documentation
105     mkdir -p "${destdir}/$docsdir"
106     cp -p $docs "${destdir}/$docsdir"