wok diff megatools/receipt @ rev 21747

tazboot: spare 2k
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 14 17:17:16 2019 +0200 (2019-06-14)
parents 5c4ebc8de350
children 2a0479881723
line diff
     1.1 --- a/megatools/receipt	Mon Jan 18 22:23:53 2016 +0100
     1.2 +++ b/megatools/receipt	Fri Jun 14 17:17:16 2019 +0200
     1.3 @@ -16,12 +16,14 @@
     1.4  # Rules to configure and make the package.
     1.5  compile_rules()
     1.6  {
     1.7 -	./configure $CONFIGURE_ARGS && make && make install
     1.8 +	./configure $CONFIGURE_ARGS --disable-static \
     1.9 +	&& make && make install
    1.10  }
    1.11  
    1.12  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.13  genpkg_rules()
    1.14  {
    1.15  	cp -a $install/* $fs
    1.16 -	rm -r $fs/usr/share
    1.17 +	# upstream info: lib is deprecated; remove .h .pc .la
    1.18 +	rm -r $fs/usr/share $fs/usr/lib/pkgconfig $fs/usr/lib/*a $fs/usr/include
    1.19  }