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

Add neofetch, tcl2c-fork; build two versions of tklauncher (using tcl2c and tcl2c-fork) with different warnings
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 23 09:45:42 2018 +0300 (2018-06-23)
parents 5baa3b6a24e7
children e7a485521d6a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="man-db"
4 VERSION="2.7.6.1"
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/stable/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 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="gdbm libpipeline zlib"
35 TAGS="LFS"
36 }