wok-next annotate man-db/receipt @ rev 21529

updated buildroot (2014.08 -> 2020.05)
author Hans-G?nter Theisgen
date Sat Jun 20 16:34:10 2020 +0100 (2020-06-20)
parents d5aab818505e
children
rev   line source
al@19748 1 # SliTaz package receipt v2.
al@19582 2
al@19582 3 PACKAGE="man-db"
al@20969 4 VERSION="2.8.4"
al@19582 5 CATEGORY="system-tools"
al@19582 6 SHORT_DESC="The on-line manual database"
al@19582 7 MAINTAINER="al.bobylev@gmail.com"
al@19582 8 LICENSE="GPL2"
al@19582 9 WEB_SITE="http://www.nongnu.org/man-db/"
al@20905 10 LFS="http://www.linuxfromscratch.org/lfs/view/development/chapter06/man-db.html"
al@19582 11
al@19582 12 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@19582 13 WGET_URL="http://download.savannah.gnu.org/releases/man-db/$TARBALL"
al@19582 14
al@21020 15 BUILD_DEPENDS="groff bzip2-dev xz-dev gettext-dev libpipeline-dev gdbm-dev \
al@19582 16 zlib-dev"
al@19582 17
al@20436 18 compile_rules() {
al@19582 19 ./configure \
al@19582 20 --disable-setuid \
al@19582 21 --with-browser=/usr/bin/lynx \
al@19582 22 --with-vgrind=/usr/bin/vgrind \
al@19582 23 --with-grap=/usr/bin/grap \
al@19582 24 $CONFIGURE_ARGS &&
al@20599 25 fix libtool &&
al@20534 26 make &&
al@20534 27 make install || return 1
al@19582 28
al@19582 29 sed -i "s:man root:root root:g" $install/usr/lib/tmpfiles.d/man-db.conf
al@19582 30 }
al@19582 31
al@20436 32 genpkg_rules() {
al@20568 33 copy @std
al@21111 34 DEPENDS="libgdbm libpipeline zlib"
al@20969 35 CONFIG_FILES="/etc/man_db.conf"
al@20568 36 TAGS="LFS"
al@19582 37 }