wok-current rev 25112
updated patchelf (0.10 -> 0.14.5)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 25 15:14:46 2022 +0100 (2022-06-25) |
parents | 36b72d9c181b |
children | 77ec99338524 |
files | patchelf/description.txt patchelf/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/patchelf/description.txt Sat Jun 25 15:14:46 2022 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +PatchELF is a simple utility for modifying existing ELF executables 1.5 +and libraries. 1.6 + 1.7 +In particular, it can do the following: 1.8 + 1.9 +- Change the dynamic loader ("ELF interpreter") of executables 1.10 +- Change the RPATH of executables and libraries 1.11 +- Shrink the RPATH of executables and libraries 1.12 +- Remove declared dependencies on dynamic libraries (DT_NEEDED entries) 1.13 +- Add a declared dependency on a dynamic library (DT_NEEDED entries) 1.14 +- Replace a declared dependency on a dynamic library with another one (DT_NEEDED) 1.15 +- Change SONAME of a dynamic library
2.1 --- a/patchelf/receipt Sat Jun 25 15:00:34 2022 +0100 2.2 +++ b/patchelf/receipt Sat Jun 25 15:14:46 2022 +0100 2.3 @@ -1,12 +1,12 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="patchelf" 2.7 -VERSION="0.10" 2.8 +VERSION="0.14.5" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Modify the dynamic linker and RPATH of ELF executables." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL3" 2.13 -WEB_SITE="http://nixos.org/patchelf.html" 2.14 +WEB_SITE="https://nixos.org/patchelf.html" 2.15 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 WGET_URL="https://github.com/NixOS/$PACKAGE/archive/$VERSION.tar.gz" 2.18 @@ -32,12 +32,11 @@ 2.19 --mandir=/usr/share/man \ 2.20 $CONFIGURE_ARGS && 2.21 make && 2.22 - make DESTDIR=$DESTDIR install 2.23 + make install DESTDIR=$DESTDIR 2.24 } 2.25 2.26 # Rules to gen a SliTaz package suitable for Tazpkg. 2.27 genpkg_rules() 2.28 { 2.29 - mkdir -p $fs/usr 2.30 - cp -a $install/usr/bin $fs/usr 2.31 + cook_copy_folders bin 2.32 }