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.
21 # Set 'outdir' for a nice and well-organized output directory
22 outdir="${outdir}/${arch}/tools"
24 tarname=${program}-${version}.tar.xz
27 fetch=http://download.savannah.gnu.org/releases/man-db/$tarname
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
38 # Source documentation
39 docs="ChangeLog FAQ NEWS README"
40 docsdir="${docdir}/${program}-${version}"
46 unpack "${tardir}/$tarname"
50 # Set sane permissions
51 chmod -R u+w,go-w,a+rX-s .
53 ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
55 --libdir=/usr/lib${libSuffix} \
60 --disable-cache-owner \
63 --enable-automatic-create \
65 --with-systemdtmpfilesdir="" \
66 --build="$(cc -dumpmachine)"
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"
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"
87 rm -f "${destdir}/${infodir}/dir"
88 lzip -9 "${destdir}/${infodir}"/*
91 # Compress and link man pages (if needed)
92 if test -d "${destdir}/$mandir"
95 cd "${destdir}/$mandir"
96 find . -type f -exec lzip -9 '{}' +
97 find . -type l | while read -r file
99 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
106 mkdir -p "${destdir}${docsdir}"
107 cp -p $docs "${destdir}${docsdir}"