strip remaining libraries for the distribution size
[dragora.git] / recipes / tools / texinfo / recipe
blob8688aede9ad0a49733f02aaee7c1054db13a01f2
1 # Build recipe for texinfo.
3 # Copyright (c) 2016-2017 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.5
19 release=1
21 tarname=${program}-${version}.tar.gz
23 # Remote source(s)
24 fetch=http://ftp.gnu.org/gnu/texinfo/$tarname
26 description="
27 The GNU documentation system.
29 Texinfo is a documentation system that uses a single source
30 file to produce both online information and printed output.
32 It is primarily designed for writing software manuals.
35 homepage=http://www.gnu.org/software/texinfo
36 license=GPLv3+
38 # Source documentation
39 docs="AUTHORS COPYING ChangeLog NEWS README* TODO"
40 docsdir="${docdir}/${program}-${version}"
42 build()
44     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
51      $configure_args \
52      --libdir=/usr/lib${libSuffix} \
53      --infodir=$infodir \
54      --mandir=$mandir \
55      --docdir=$docsdir \
56      --disable-static \
57      --build="$(cc -dumpmachine)"
59     make -j${jobs} V=1
60     make -j${jobs} DESTDIR="$destdir" install-strip
61     make DESTDIR="$destdir" TEXMF="/usr/share/texmf" install-tex
63     # Include cron job
65     mkdir -p "${destdir}/etc/cron.daily/"
66     cp -p "${worktree}/archive/texinfo/etc/cron.daily/texinfo" \
67           "${destdir}/etc/cron.daily/"
68     chmod 0755 "${destdir}/etc/cron.daily/texinfo"
70     # Compress info documents deleting index file for the package
71     if test -d "${destdir}/$infodir"
72     then
73         rm -f "${destdir}/${infodir}/dir"
74         lzip -9 "${destdir}/${infodir}"/*
75     fi
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 '{}' +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     # Copy documentation
92     mkdir -p "${destdir}${docsdir}"
93     cp -p $docs "${destdir}${docsdir}"