recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / devel / texinfo / recipe
blob97fde573907df40d00a3e4eca3a3d0d04ea836ad
1 # Build recipe for texinfo.
3 # Copyright (c) 2016-2019 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 program=texinfo
18 version=6.7
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=devel
24 tarname=${program}-${version}.tar.gz
26 # Remote source(s)
27 fetch="
28   http://ftpmirror.gnu.org/texinfo/$tarname
29   http://ftp.gnu.org/gnu/texinfo/$tarname
32 description="
33 The GNU documentation system.
35 Texinfo is a documentation system that uses a single source
36 file to produce both online information and printed output.
38 It is primarily designed for writing software manuals.
41 homepage=http://www.gnu.org/software/texinfo
42 license=GPLv3+
44 # Source documentation
45 docs="AUTHORS COPYING ChangeLog NEWS README* TODO"
46 docsdir="${docdir}/${program}-${version}"
48 build()
50     set -e
52     unpack "${tardir}/$tarname"
54     cd "$srcdir"
56     # Set sane permissions
57     chmod -R u+w,go-w,a+rX-s .
59     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60      $configure_args \
61      --libdir=/usr/lib${libSuffix} \
62      --infodir=$infodir \
63      --mandir=$mandir \
64      --docdir=$docsdir \
65      --disable-static \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install-strip
70     make DESTDIR="$destdir" TEXMF="/usr/share/texmf" install-tex
72     # Include cron job
74     mkdir -p "${destdir}/etc/cron.daily/"
75     cp -p "${worktree}/archive/texinfo/etc/cron.daily/texinfo" \
76           "${destdir}/etc/cron.daily/"
77     chmod 0755 "${destdir}/etc/cron.daily/texinfo"
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}"