wok-current diff readline/receipt @ rev 25669
Add rdfind, required for firmware build
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Sat Mar 02 20:53:40 2024 +0000 (11 months ago) |
parents | bf28cc07ebf1 |
children | 5926178cd6fa |
line diff
1.1 --- a/readline/receipt Fri Jul 09 10:46:05 2021 +0000 1.2 +++ b/readline/receipt Sat Mar 02 20:53:40 2024 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="readline" 1.7 -VERSION="8.0" 1.8 +VERSION="8.1" 1.9 CATEGORY="system-tools" 1.10 SHORT_DESC="GNU readline." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 @@ -32,14 +32,15 @@ 1.13 # patch -Np1 -i $stuff/readline-6.3-upstream_fixes-3.patch 1.14 sed -i '/(MV)/d' Makefile* 1.15 1.16 - ./configure --disable-install-examples $CONFIGURE_ARGS && 1.17 - make -j 1 && 1.18 - make DESTDIR=$DESTDIR install 1.19 + ./configure \ 1.20 + --disable-install-examples \ 1.21 + $CONFIGURE_ARGS && 1.22 + make && 1.23 + make install DESTDIR=$DESTDIR 1.24 } 1.25 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 - mkdir -p $fs/usr/lib 1.30 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.31 + cook_copy_files *.so* 1.32 }