wok-next view man-db/receipt @ rev 21727

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