linux-libre upgraded to version 4.19.26
[dragora.git] / recipes / tools / man-db / recipe
blob129ebf8961ac61aa06d06e776afbafdaaf8aa76e
1 # Build recipe for man-db.
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=man-db
18 version=2.8.5
19 release=1
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/tools"
24 tarname=${program}-${version}.tar.xz
26 # Remote source(s)
27 fetch=http://download.savannah.gnu.org/releases/man-db/$tarname
29 description="
30 Programs for finding and viewing man pages.
32 The man-db package contains programs for finding and viewing manual pages.
35 homepage=http://man-db.nongnu.org
36 license=GPLv2+
38 # Source documentation
39 docs="ChangeLog FAQ NEWS README"
40 docsdir="${docdir}/${program}-${version}"
42 build()
44     set -e
46     unpack "${tardir}/$tarname"
48     cd "$srcdir"
50     # Set sane permissions
51     chmod -R u+w,go-w,a+rX-s .
53     ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
54      $configure_args \
55      --libdir=/usr/lib${libSuffix} \
56      --infodir=$infodir \
57      --mandir=$mandir \
58      --docdir=$docsdir \
59      --disable-setuid \
60      --disable-cache-owner \
61      --disable-shared \
62      --enable-static \
63      --enable-automatic-create \
64      --with-db=gdbm \
65      --with-systemdtmpfilesdir="" \
66      --build="$(cc -dumpmachine)"
68     make -j${jobs} V=1
69     make -j${jobs} DESTDIR="$destdir" install-strip
71     # Remove generated charset.alias
72     rm -f "${destdir}/usr/lib${libSuffix}/charset.alias"
74     # To handle config file(s)
75     touch "${destdir}/etc/.graft-config"
77     # Include cron job
79     mkdir -p "${destdir}/etc/cron.daily/"
80     cp -p "${worktree}/archive/man-db/etc/cron.daily/man-db" \
81           "${destdir}/etc/cron.daily/"
82     chmod 0755 "${destdir}/etc/cron.daily/man-db"
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}"