bf04f394af
Closes: #12009 [via git-merge-pr]
46 lines
1.6 KiB
Bash
46 lines
1.6 KiB
Bash
# Template file for 'man-db'
|
|
pkgname=man-db
|
|
version=2.8.2
|
|
revision=1
|
|
lib32disabled=yes
|
|
build_style=gnu-configure
|
|
configure_args="--with-db=db --with-pager=less --with-gzip=/usr/bin/gzip
|
|
--with-bzip2=/usr/bin/bzip2 --disable-rpath --enable-threads=posix
|
|
--with-lzma=/usr/bin/lzma --with-xz=/usr/bin/xz --disable-setuid
|
|
--without-included-regex --enable-automatic-create --sbindir=/usr/bin"
|
|
hostmakedepends="pkg-config groff"
|
|
makedepends="gettext-devel db-devel zlib-devel libpipeline-devel groff"
|
|
depends="bzip2 gzip less groff grep coreutils"
|
|
conf_files="/etc/man_db.conf"
|
|
provides="man-0_1"
|
|
short_desc="The on-line manual database"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2, LGPL-2.1"
|
|
homepage="http://www.nongnu.org/man-db/"
|
|
distfiles="${NONGNU_SITE}/$pkgname/$pkgname-$version.tar.xz"
|
|
checksum=45bdff87df888ddd93dc2a68abca91a2012d6e08333a8fc7c0dfefe9cbde0c5c
|
|
|
|
alternatives="
|
|
man:man:/usr/bin/mandb-man
|
|
man:whatis:/usr/bin/mandb-whatis
|
|
man:apropos:/usr/bin/mandb-whatis
|
|
man:man.1:/usr/share/man/man1/mandb-man.1
|
|
man:whatis.1:/usr/share/man/man1/mandb-whatis.1
|
|
man:apropos.1:/usr/share/man/man1/mandb-apropos.1"
|
|
|
|
pre_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/gettext"
|
|
LDFLAGS+=" -lintl";;
|
|
esac
|
|
}
|
|
post_install() {
|
|
rm -r ${DESTDIR}/usr/lib/tmpfiles.d
|
|
# Rename files for alternatives
|
|
for f in apropos man whatis; do
|
|
mv ${DESTDIR}/usr/bin/{$f,mandb-$f}
|
|
mv ${DESTDIR}/usr/share/man/man1/{$f,mandb-$f}.1
|
|
done
|
|
# Install the cron daily job.
|
|
vinstall ${FILESDIR}/man-db.cron-daily 744 etc/cron.daily man-db
|
|
}
|