wok diff aubio/receipt @ rev 19269

Compress manpages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 14:47:05 2016 +0300 (2016-07-04)
parents 17e313b5b9c1
children 11b5e93cb5f2
line diff
     1.1 --- a/aubio/receipt	Tue Feb 17 09:42:47 2015 +0100
     1.2 +++ b/aubio/receipt	Mon Jul 04 14:47:05 2016 +0300
     1.3 @@ -20,19 +20,21 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	cd $src
     1.8  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lm"
     1.9  	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.10  	make -j1 &&
    1.11  	make -j1 install
    1.12 +
    1.13 +	mkdir -p $install/usr/share/man/man1
    1.14 +	cp -a $src/doc/*.1 $install/usr/share/man/man1
    1.15 +	cook_compress_manpages
    1.16  }
    1.17 -	
    1.18 +
    1.19  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.20  genpkg_rules()
    1.21  {
    1.22 -	mkdir -p $fs/usr/lib 
    1.23 +	mkdir -p $fs/usr/lib
    1.24  	cp -a $install/usr/bin $fs/usr
    1.25  	cp -a $install/usr/lib/*so* $fs/usr/lib/
    1.26  	cp -a $install/usr/share $fs/usr
    1.27 -
    1.28  }