wok diff acct/receipt @ rev 19264

Compress manpages (in $install/usr/share/man/...)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 00:54:49 2016 +0300 (2016-07-04)
parents 3885a83fd3f0
children 11b5e93cb5f2
line diff
     1.1 --- a/acct/receipt	Sat Jun 04 09:44:45 2016 -0300
     1.2 +++ b/acct/receipt	Mon Jul 04 00:54:49 2016 +0300
     1.3 @@ -20,21 +20,24 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -  ./configure --prefix=/usr \
     1.8 -    $CONFIGURE_ARGS &&
     1.9 -    make $MAKEFLAGS &&
    1.10 -    make DESTDIR=$DESTDIR install
    1.11 +	./configure \
    1.12 +		--prefix=/usr \
    1.13 +		$CONFIGURE_ARGS &&
    1.14 +	make $MAKEFLAGS &&
    1.15 +	make DESTDIR=$DESTDIR install
    1.16 +
    1.17 +	cook_compress_manpages
    1.18  }
    1.19  
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -  mkdir -p $fs/usr/bin
    1.24 -  cp -a $install/usr/bin/* $fs/usr/bin
    1.25 +	mkdir -p $fs/usr/bin
    1.26 +	cp -a $install/usr/bin/* $fs/usr/bin
    1.27  
    1.28 -  mkdir -p $fs/usr/sbin
    1.29 -  cp -a $install/usr/sbin/* $fs/usr/sbin
    1.30 +	mkdir -p $fs/usr/sbin
    1.31 +	cp -a $install/usr/sbin/* $fs/usr/sbin
    1.32  
    1.33 -  mkdir -p $fs/usr/share
    1.34 -  cp -a $install/usr/share/* $fs/usr/share
    1.35 +	mkdir -p $fs/usr/share
    1.36 +	cp -a $install/usr/share/* $fs/usr/share
    1.37  }