wok diff libconfig/receipt @ rev 25057
linux-libre: fix linux-libre-3.18.129-gnu-slitaz.config
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jun 06 11:05:30 2022 +0000 (2022-06-06) |
parents | 5ea0ce1cecc0 |
children | 7364ffdaaa60 |
line diff
1.1 --- a/libconfig/receipt Tue Jun 08 08:46:05 2021 +0000 1.2 +++ b/libconfig/receipt Mon Jun 06 11:05:30 2022 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libconfig" 1.7 -VERSION="1.7.2" 1.8 +VERSION="1.7.3" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="C/C++ Configuration File Library." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -23,20 +23,20 @@ 1.13 # Rules to configure and make the package. 1.14 compile_rules() 1.15 { 1.16 - autoreconf 1.17 + autoreconf && 1.18 ./configure \ 1.19 --prefix=/usr \ 1.20 --infodir=/usr/share/info \ 1.21 --mandir=/usr/share/man \ 1.22 --disable-cxx \ 1.23 + --disable-doc \ 1.24 $CONFIGURE_ARGS && 1.25 - make -j 1 && 1.26 - make DESTDIR=$DESTDIR -j 1 install 1.27 + make && 1.28 + make install DESTDIR=$DESTDIR 1.29 } 1.30 1.31 # Rules to gen a SliTaz package suitable for Tazpkg. 1.32 genpkg_rules() 1.33 { 1.34 - mkdir -p $fs/usr/lib 1.35 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.36 + cook_copy_files *.so* 1.37 }